-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
251 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
[submodule "curl/src/main/native/curl"] | ||
path = curl/src/main/native/curl | ||
url = https://github.com/curl/curl.git | ||
[submodule "curl/src/main/native/nghttp2"] | ||
path = curl/src/main/native/nghttp2 | ||
url = https://github.com/nghttp2/nghttp2.git | ||
[submodule "curl/src/main/native/ngtcp2"] | ||
path = curl/src/main/native/ngtcp2 | ||
url = https://github.com/ngtcp2/ngtcp2.git | ||
[submodule "curl/src/main/native/nghttp3"] | ||
path = curl/src/main/native/nghttp3 | ||
url = https://github.com/ngtcp2/nghttp3.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#define HAVE_NETINET_IN_H 1 | ||
#define HAVE_ARPA_INET_H 1 | ||
#define HAVE_UNISTD_H 1 | ||
#define HAVE_SYS_ENDIAN_H 1 | ||
#define HAVE_ENDIAN_H 1 | ||
#define HAVE_BYTESWAP_H 1 | ||
#define HAVE_BE64TOH 1 | ||
#define HAVE_BSWAP_64 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* nghttp2 - HTTP/2 C Library | ||
* | ||
* Copyright (c) 2012, 2013 Tatsuhiro Tsujikawa | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files (the | ||
* "Software"), to deal in the Software without restriction, including | ||
* without limitation the rights to use, copy, modify, merge, publish, | ||
* distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to | ||
* the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
#ifndef NGHTTP2VER_H | ||
#define NGHTTP2VER_H | ||
|
||
/** | ||
* @macro | ||
* Version number of the nghttp2 library release | ||
*/ | ||
#define NGHTTP2_VERSION "1.47.0" | ||
|
||
/** | ||
* @macro | ||
* Numerical representation of the version number of the nghttp2 library | ||
* release. This is a 24 bit number with 8 bits for major number, 8 bits | ||
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. | ||
*/ | ||
#define NGHTTP2_VERSION_NUM 0x012f00 | ||
|
||
#endif /* NGHTTP2VER_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* nghttp3 | ||
* | ||
* Copyright (c) 2019 nghttp3 contributors | ||
* Copyright (c) 2016 ngtcp2 contributors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files (the | ||
* "Software"), to deal in the Software without restriction, including | ||
* without limitation the rights to use, copy, modify, merge, publish, | ||
* distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to | ||
* the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
#ifndef NGHTTP3_VERSION_H | ||
#define NGHTTP3_VERSION_H | ||
|
||
/** | ||
* @macro | ||
* | ||
* Version number of the nghttp3 library release. | ||
*/ | ||
#define NGHTTP3_VERSION "0.4.0" | ||
|
||
/** | ||
* @macro | ||
* | ||
* Numerical representation of the version number of the nghttp3 | ||
* library release. This is a 24 bit number with 8 bits for major | ||
* number, 8 bits for minor and 8 bits for patch. Version 1.2.3 | ||
* becomes 0x010203. | ||
*/ | ||
#define NGHTTP3_VERSION_NUM 0x000400 | ||
|
||
#endif /* NGHTTP3_VERSION_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* ngtcp2 | ||
* | ||
* Copyright (c) 2016 ngtcp2 contributors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files (the | ||
* "Software"), to deal in the Software without restriction, including | ||
* without limitation the rights to use, copy, modify, merge, publish, | ||
* distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to | ||
* the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
/** | ||
* @macrosection | ||
* | ||
* Library version macros | ||
*/ | ||
|
||
/** | ||
* @macro | ||
* | ||
* Version number of the ngtcp2 library release. | ||
*/ | ||
#define NGTCP2_VERSION "0.4.0" | ||
|
||
/** | ||
* @macro | ||
* | ||
* Numerical representation of the version number of the ngtcp2 | ||
* library release. This is a 24 bit number with 8 bits for major | ||
* number, 8 bits for minor and 8 bits for patch. Version 1.2.3 | ||
* becomes 0x010203. | ||
*/ | ||
#define NGTCP2_VERSION_NUM 0x000400 | ||
|
||
#endif /* VERSION_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-repackageclasses | ||
-allowaccessmodification |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.