1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00

Updated according to spdylay_select_next_protocol change

This commit is contained in:
Tatsuhiro Tsujikawa 2012-02-08 21:52:44 +09:00
parent 14ac6f8ca8
commit 2c5c60b752

View File

@ -431,7 +431,7 @@ int select_next_proto_cb(SSL* ssl,
std::cout << std::endl;
}
}
if(spdylay_select_next_protocol(out, outlen, in, inlen) == -1) {
if(spdylay_select_next_protocol(out, outlen, in, inlen) != 1) {
std::cerr << "Server did not advertise spdy/2 protocol." << std::endl;
abort();
}