Home
last modified time | relevance | path

Searched full:nghttp3 (Results 1 – 18 of 18) sorted by relevance

/external/curl/.github/workflows/
Dosslq-linux.yml53 …# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://gi…
54 nghttp3-version: 1.3.0
77 --with-nghttp3=$HOME/nghttpx
146 - name: cache nghttp3
148 id: cache-nghttp3
150 cache-name: cache-nghttp3
152 path: /home/runner/nghttp3
153 key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.nghttp3-version }}
155 - if: steps.cache-nghttp3.outputs.cache-hit != 'true'
158 … git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
[all …]
Dngtcp2-linux.yml54 …# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://gi…
55 nghttp3-version: 1.3.0
182 - name: cache nghttp3
184 id: cache-nghttp3
186 cache-name: cache-nghttp3
188 path: /home/runner/nghttp3
189 key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.nghttp3-version }}
191 - if: steps.cache-nghttp3.outputs.cache-hit != 'true'
194 … git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
195 cd nghttp3
[all …]
Dquiche-linux.yml51 …# renovate: datasource=github-tags depName=ngtcp2/nghttp3 versioning=semver registryUrl=https://gi…
52 nghttp3-version: 1.3.0
100 …}-build-${{ env.cache-name }}-openssl-${{ env.openssl-version }}-nghttp3-${{ env.nghttp3-version }…
112 … git clone --quiet --depth=1 -b v${{ env.nghttp3-version }} https://github.com/ngtcp2/nghttp3
113 cd nghttp3
118 name: 'install nghttp3'
/external/curl/CMake/
DFindNGHTTP3.cmake29 Find the nghttp3 library
35 System has nghttp3
37 The nghttp3 include directories.
39 The libraries needed to use nghttp3
41 version of nghttp3.
49 find_path(NGHTTP3_INCLUDE_DIR nghttp3/nghttp3.h
55 find_library(NGHTTP3_LIBRARY NAMES nghttp3
66 find_package_handle_standard_args(NGHTTP3
/external/curl/docs/
DHTTP3.md44 Building curl with ngtcp2 involves 3 components: `ngtcp2` itself, `nghttp3` and a QUIC supporting T…
47 * `nghttp3`: v1.1.0
62 Build nghttp3
65 % git clone -b v1.1.0 https://github.com/ngtcp2/nghttp3
66 % cd nghttp3
89 …% LDFLAGS="-Wl,-rpath,<somewhere1>/lib" ./configure --with-openssl=<somewhere1> --with-nghttp3=<so…
106 Build nghttp3
109 % git clone -b v1.1.0 https://github.com/ngtcp2/nghttp3
110 % cd nghttp3
133 % ./configure --with-gnutls=<somewhere1> --with-nghttp3=<somewhere2> --with-ngtcp2=<somewhere3>
[all …]
/external/curl/lib/vquic/
Dcurl_ngtcp2.h36 #include <nghttp3/nghttp3.h>
Dcurl_osslq.c32 #include <nghttp3/nghttp3.h>
542 * headers to it that are not counted against the nghttp3 flow limits. */ in h3_data_setup()
651 /* we might be called by nghttp3 after we already cleaned up */ in cb_h3_stream_close()
910 /* nghttp3 keeps references to the sendbuf data until it is ACKed in cb_h3_read_req_body()
913 * that we have already passed to nghttp3, but which have not been in cb_h3_read_req_body()
916 * to nghttp3. Do that now, if we can. */ in cb_h3_read_req_body()
1249 /* Forward what we have to nghttp3 */ in cf_osslq_stream_recv()
1258 "to nghttp3 -> %zd", s->id, blen, nread); in cf_osslq_stream_recv()
1267 * all data that we passed is not owned by nghttp3. */ in cf_osslq_stream_recv()
1296 CURL_TRC_CF(data, cf, "[%" CURL_PRId64 "] close nghttp3 stream -> %d", in cf_osslq_stream_recv()
[all …]
Dcurl_ngtcp2.c29 #include <nghttp3/nghttp3.h>
110 (void)msnprintf(p, len, "ngtcp2/%s nghttp3/%s", in Curl_ngtcp2_ver()
849 /* we might be called by nghttp3 after we already cleaned up */ in cb_h3_stream_close()
935 /* nghttp3 has consumed bytes on the QUIC stream and we need to in cb_h3_deferred_consume()
1301 /* nghttp3 keeps references to the sendbuf data until it is ACKed in cb_h3_read_req_body()
1304 * that we have already passed to nghttp3, but which have not been in cb_h3_read_req_body()
1307 * to nghttp3. Do that now, if we can. */ in cb_h3_read_req_body()
/external/curl/lib/
DMakefile.mk178 ifeq ($(findstring -nghttp3,$(CFG))$(findstring -ngtcp2,$(CFG)),-nghttp3-ngtcp2)
179 NGHTTP3_PATH ?= $(PROOT)/../nghttp3
Dcurl_config.h.in471 /* Define to 1 if you have the <nghttp3/nghttp3.h> header file. */
890 /* if nghttp3 is in use */
908 /* if ngtcp2 + nghttp3 is in use */
917 /* if openssl quic + nghttp3 is in use */
Dcurl_config.h453 /* Define to 1 if you have the <nghttp3/nghttp3.h> header file. */
863 /* if nghttp3 is in use */
881 /* if ngtcp2 + nghttp3 is in use */
Dcurl_config.h.cmake726 /* to enable NGHTTP3 */
732 /* to enable openssl + nghttp3 */
/external/curl/
Dconfigure.ac180 …curl_h3_msg="no (--with-ngtcp2 --with-nghttp3, --with-quiche, --with-openssl-quic, --with-msh…
3184 dnl Check for nghttp3 (HTTP/3 with ngtcp2)
3190 # without ngtcp2 or openssl quic, nghttp3 is of no use for us
3195 AC_ARG_WITH(nghttp3, optwith
3196 AS_HELP_STRING([--with-nghttp3=PATH],[Enable nghttp3 usage])
3197 AS_HELP_STRING([--without-nghttp3],[Disable nghttp3 usage]),
3201 dnl --without-nghttp3 option used
3205 dnl --with-nghttp3 option used without path
3210 dnl --with-nghttp3 option used with path
3216 curl_http3_msg="no (--with-nghttp3)"
[all …]
DCMakeLists.txt689 option(USE_NGTCP2 "Use ngtcp2 and nghttp3 libraries for HTTP/3 support" OFF)
709 find_package(NGHTTP3 REQUIRED)
747 option(USE_OPENSSL_QUIC "Use openssl and nghttp3 libraries for HTTP/3 support" OFF)
754 find_package(NGHTTP3 REQUIRED)
Dconfigure2190 --with-nghttp3=PATH Enable nghttp3 usage
2191 --without-nghttp3 Disable nghttp3 usage
6732 …curl_h3_msg="no (--with-ngtcp2 --with-nghttp3, --with-quiche, --with-openssl-quic, --with-msh…
32526 # without ngtcp2 or openssl quic, nghttp3 is of no use for us
32532 # Check whether --with-nghttp3 was given.
32552 curl_http3_msg="no (--with-nghttp3)"
32771 for ac_header in nghttp3/nghttp3.h
32773 …ac_fn_c_check_header_compile "$LINENO" "nghttp3/nghttp3.h" "ac_cv_header_nghttp3_nghttp3_h" "$ac_i…
32801 …as_fn_error $? "--with-nghttp3 was specified but could not find nghttp3 pkg-config file." "$LINENO…
32816 curl_h3_msg="enabled (ngtcp2 + nghttp3)"
[all …]
/external/curl/tests/http/testenv/
Denv.py164 self.nghttpx_with_h3 = re.match(r'.* nghttp3/.*', p.stdout.strip()) is not None
307 return not Env.curl_uses_lib('ngtcp2') and Env.curl_uses_lib('nghttp3')
/external/curl/tests/http/
Dscorecard.py357 for lib in ['ngtcp2', 'quiche', 'msh3', 'nghttp3']:
/external/curl/tests/
Druntests.pl320 $nghttpx_h3 = $nghttpx_version =~ /nghttp3\//;