Crash when remap plugin tries to send a redirect response.
----------------------------------------------------------

                 Key: TS-268
                 URL: https://issues.apache.org/jira/browse/TS-268
             Project: Traffic Server
          Issue Type: Bug
            Reporter: Leif Hedstrom
            Priority: Critical
             Fix For: 2.0.0
         Attachments: TS-268.trace

This remap API plugin will crash, when it tries to build the response body:

int
tsremap_remap(ihandle ih, rhandle rh, REMAP_REQUEST_INFO *rri)
{
  const char* url = "http://www.google.com/";;

  INKHttpTxnSetHttpRetStatus((INKHttpTxn)rh, (INKHttpStatus)302);
  rri->redirect_url_size = strlen(url);
  memcpy(rri->redirect_url, url, rri->redirect_url_size);

  return 1;
}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to