Advertise h2-14

This commit is contained in:
Tatsuhiro Tsujikawa 2014-07-31 23:34:54 +09:00
parent 2e083352d5
commit 7952029752
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ extern "C" {
* The protocol version identification string of this library * The protocol version identification string of this library
* supports. This identifier is used if HTTP/2 is used over TLS. * supports. This identifier is used if HTTP/2 is used over TLS.
*/ */
#define NGHTTP2_PROTO_VERSION_ID "h2-13" #define NGHTTP2_PROTO_VERSION_ID "h2-14"
/** /**
* @macro * @macro
* *
@ -56,7 +56,7 @@ extern "C" {
* supports. This identifier is used if HTTP/2 is used over cleartext * supports. This identifier is used if HTTP/2 is used over cleartext
* TCP. * TCP.
*/ */
#define NGHTTP2_CLEARTEXT_PROTO_VERSION_ID "h2c-13" #define NGHTTP2_CLEARTEXT_PROTO_VERSION_ID "h2c-14"
/** /**
* @macro * @macro

View File

@ -33,7 +33,7 @@ static void http2(void)
{ {
const unsigned char p[] = { const unsigned char p[] = {
8, 'h', 't', 't', 'p', '/', '1', '.', '1', 8, 'h', 't', 't', 'p', '/', '1', '.', '1',
5, 'h', '2', '-', '1', '3', 5, 'h', '2', '-', '1', '4',
6, 's', 'p', 'd', 'y', '/', '3' 6, 's', 'p', 'd', 'y', '/', '3'
}; };
unsigned char outlen; unsigned char outlen;