HomeSort by relevance Sort by last modified time
    Searched full:alpn (Results 26 - 50 of 74) sorted by null

12 3

  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_client_test.go 529 name: "ALPN",
531 // version that supports the -alpn flag.
532 command: []string{"openssl", "s_server", "-alpn", "proto1,proto2"},
550 name: "ALPN-NoMatch",
552 // version that supports the -alpn flag.
553 command: []string{"openssl", "s_server", "-alpn", "proto1,proto2"},
handshake_server_test.go 693 name: "ALPN",
695 // version that supports the -alpn flag.
696 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"},
714 name: "ALPN-NoMatch",
716 // version that supports the -alpn flag.
717 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"},
    [all...]
handshake_client.go 532 return false, errors.New("server advertised unrequested ALPN extension")
537 return false, errors.New("server advertised both NPN and ALPN extensions")
646 // mutualProtocol finds the mutual Next Protocol Negotiation or ALPN protocol
  /external/curl/lib/vtls/
schannel.c 67 /* ALPN requires version 8.1 of the Windows SDK, which was
253 /* ALPN is only supported on Windows 8.1 / Server 2012 R2 and above */
268 ALPN data, as opposed to NPN, for example. */
284 infof(data, "schannel: ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID);
291 infof(data, "schannel: ALPN, offering %s\n", ALPN_HTTP_1_1);
654 /* ALPN is only supported on Windows 8.1 / Server 2012 R2 and above */
662 failf(data, "schannel: failed to retrieve ALPN result");
669 infof(data, "schannel: ALPN, server accepted to use %.*s\n",
687 infof(data, "ALPN, server did not agree to a protocol\n");
    [all...]
mbedtls.c 119 /* ALPN for http2? */
414 failf(data, "Failed setting ALPN protocols");
418 infof(data, "ALPN, offering %s\n", *p);
566 infof(data, "ALPN, server accepted to use %s\n", next_protocol);
581 infof(data, "ALPN, server did not agree to a protocol\n");
polarssl.c 130 /* ALPN for http2? */
380 infof(data, "ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID);
385 infof(data, "ALPN, offering %s\n", ALPN_HTTP_1_1);
532 infof(data, "ALPN, server accepted to use %s\n", next_protocol);
546 infof(data, "ALPN, server did not agree to a protocol\n");
gtls.c 651 infof(data, "ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID);
658 infof(data, "ALPN, offering %s\n", ALPN_HTTP_1_1);
    [all...]
nss.c 708 infof(conn->data, "ALPN/NPN, server did not agree to a protocol\n");
712 infof(conn->data, "ALPN, server accepted to use %.*s\n", buflen, buf);
773 /* Enforce ALPN or NPN to do False Start, as an indicator of server
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_server_test.go 693 name: "ALPN",
695 // version that supports the -alpn flag.
696 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"},
714 name: "ALPN-NoMatch",
716 // version that supports the -alpn flag.
717 command: []string{"openssl", "s_client", "-alpn", "proto2,proto1"},
    [all...]
handshake_client.go 532 return false, errors.New("server advertised unrequested ALPN extension")
537 return false, errors.New("server advertised both NPN and ALPN extensions")
646 // mutualProtocol finds the mutual Next Protocol Negotiation or ALPN protocol
  /external/curl/src/
tool_cfgable.h 214 bool noalpn; /* enable/disable TLS ALPN extension */
tool_help.c 151 " --no-alpn Disable the ALPN TLS extension (H)",
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java 84 /** Which ALPN protocols are in use. Only useful with TLS. */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 541 * href="http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg">ALPN</a>
659 * used the shared SSL context, when OkHttp enables ALPN for its SPDY-related
660 * stuff, it would also enable ALPN for other usages, which might crash them
661 * because ALPN is enabled when it isn't expected to be.
Connection.java 67 * <li>Application Layer Protocol Negotiation (ALPN) enables the HTTPS port
251 // Success! Save the handshake and the ALPN protocol.
ConnectionSpec.java 54 /** A modern TLS connection with extensions like SNI and ALPN available. */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FrameReader.java 129 * @param protocol an ALPN protocol, such as {@code h2}.
  /external/boringssl/src/ssl/test/runner/
common.go 187 NegotiatedProtocolFromALPN bool // protocol negotiated with ALPN
557 // SwapNPNAndALPN switches the relative order between NPN and ALPN in
561 // ALPNProtocol, if not nil, sets the ALPN protocol that a server will
788 // ALPN and NPN in the same connetion.
    [all...]
handshake_client.go 708 return false, errors.New("server advertised unrequested ALPN extension")
713 return false, errors.New("server advertised both NPN and ALPN extensions")
984 // mutualProtocol finds the mutual Next Protocol Negotiation or ALPN protocol
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 283 * Application Layer Protocol Negotiation (ALPN)</a> protocols that this peer
288 * all clients that support ALPN.
344 * Layer Protocol Negotiation (ALPN)</a> protocol selected by client and server, or null
  /external/boringssl/src/ssl/
t1_lib.c     [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java     [all...]
  /external/okhttp/website/
index.html 61 with modern TLS features (SNI, ALPN), and falls back to TLS 1.0 if the handshake
  /external/boringssl/src/include/openssl/
ssl.h     [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 224 * Sets whether ALPN is used on incoming HTTPS connections to
233 * Indicates the protocols supported by ALPN on incoming HTTPS
    [all...]

Completed in 5833 milliseconds

12 3