[ 
https://issues.apache.org/jira/browse/TS-2826?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14005329#comment-14005329
 ] 

ASF subversion and git services commented on TS-2826:
-----------------------------------------------------

Commit ceaf993fe03ed4d2cac527d6c08b35216522a93e in trafficserver's branch 
refs/heads/master from [~bcall]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=ceaf993 ]

Added TS-2826 to changes


> SPDY implementation does not support OPTIONS and TRACE methods
> --------------------------------------------------------------
>
>                 Key: TS-2826
>                 URL: https://issues.apache.org/jira/browse/TS-2826
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: SPDY
>            Reporter: Sudheer Vinukonda
>              Labels: SPDY, yahoo
>             Fix For: 5.0.0
>
>         Attachments: ts2826.diff
>
>
> SPDY implementation currently only supports the below methods. Need to add 
> OPTIONS and TRACE methods to it.
> {code}
> if (req->method == "GET")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_GET);
>   else if (req->method == "POST")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_POST);
>   else if (req->method == "PURGE")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_PURGE);
>   else if (req->method == "PUT")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_PUT);
>   else if (req->method == "HEAD")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_HEAD);
>   else if (req->method == "CONNECT")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_CONNECT);
>   else if (req->method == "DELETE")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_DELETE);
>   else if (req->method == "LAST")
>     spdy_fetcher_launch(req, TS_FETCH_METHOD_LAST);
>   else
>     spdy_prepare_status_response(sm, req->stream_id, STATUS_405);
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to