Update flags

This commit is contained in:
Tatsuhiro Tsujikawa 2014-02-08 18:03:58 +09:00
parent e9d1ba2539
commit 9c30ed1a64
1 changed files with 2 additions and 2 deletions

View File

@ -417,11 +417,11 @@ typedef enum {
/**
* The PAD_LOW flag.
*/
NGHTTP2_FLAG_PAD_LOW = 0x4,
NGHTTP2_FLAG_PAD_LOW = 0x10,
/**
* The PAD_HIGH flag.
*/
NGHTTP2_FLAG_PAD_HIGH = 0x8
NGHTTP2_FLAG_PAD_HIGH = 0x20
} nghttp2_flag;
/**