You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2014/05/22 00:28:38 UTC

[jira] [Commented] (TS-2826) SPDY implementation does not support OPTIONS and TRACE methods

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

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

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

TS-2826: SPDY implementation does not support OPTIONS and TRACE methods


> 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)