Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:17

0001 /*
0002  * nghttp2 - HTTP/2 C Library
0003  *
0004  * Copyright (c) 2012, 2013 Tatsuhiro Tsujikawa
0005  *
0006  * Permission is hereby granted, free of charge, to any person obtaining
0007  * a copy of this software and associated documentation files (the
0008  * "Software"), to deal in the Software without restriction, including
0009  * without limitation the rights to use, copy, modify, merge, publish,
0010  * distribute, sublicense, and/or sell copies of the Software, and to
0011  * permit persons to whom the Software is furnished to do so, subject to
0012  * the following conditions:
0013  *
0014  * The above copyright notice and this permission notice shall be
0015  * included in all copies or substantial portions of the Software.
0016  *
0017  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
0018  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
0019  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
0020  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
0021  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
0022  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
0023  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0024  */
0025 #ifndef NGHTTP2VER_H
0026 #define NGHTTP2VER_H
0027 
0028 /**
0029  * @macro
0030  * Version number of the nghttp2 library release
0031  */
0032 #define NGHTTP2_VERSION "1.63.0"
0033 
0034 /**
0035  * @macro
0036  * Numerical representation of the version number of the nghttp2 library
0037  * release. This is a 24 bit number with 8 bits for major number, 8 bits
0038  * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
0039  */
0040 #define NGHTTP2_VERSION_NUM 0x013f00
0041 
0042 #endif /* NGHTTP2VER_H */