Skip to content

Commit

Permalink
Don't advertise SPDY/3.1
Browse files Browse the repository at this point in the history
Stop advertising SPDY/3.1 because we don't actually speak 3.1 yet.
  • Loading branch information
priyadi committed Oct 6, 2014
1 parent bfc0fb7 commit 3068e15
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/mod_spdy/mod_spdy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,6 @@ int AdvertiseSpdy(conn_rec* connection, apr_array_header_t* protos) {
// Advertise SPDY to the client. We push protocol names in descending order
// of preference; the one we'd most prefer comes first.
// TODO(mdsteele): Advertise SPDY/3.1 once we fully support it.
APR_ARRAY_PUSH(protos, const char*) = kSpdy31ProtocolName;
APR_ARRAY_PUSH(protos, const char*) = kSpdy3ProtocolName;
APR_ARRAY_PUSH(protos, const char*) = kSpdy2ProtocolName;

Expand Down

0 comments on commit 3068e15

Please sign in to comment.