/external/okhttp/ |
pom.xml | 46 <!-- ALPN library targeted to Java 7 --> 47 <alpn.jdk7.version>7.1.2.v20141202</alpn.jdk7.version> 48 <!-- ALPN library targeted to Java 8 update 25. --> 49 <alpn.jdk8.version>8.1.2.v20141202</alpn.jdk8.version> 227 <id>alpn-when-jdk7</id> 232 <bootclasspathPrefix>${settings.localRepository}/org/mortbay/jetty/alpn/alpn-boot/${alpn.jdk7.version}/alpn-boot-${alpn.jdk7.version}.jar</bootclasspathPrefix [all...] |
CHANGELOG.md | 178 * **Fix: Disable ALPN on Android 4.4.** That release of the feature was 227 * Fix: Drop NPN support. Going forward we support ALPN only. 234 * Fix: Don't leak connections when using ALPN on the desktop. 235 * Fix: Update Jetty ALPN to `7.1.2.v20141202` (Java 7) and `8.1.2.v20141202` (Java 8). 480 * Add ALPN support. Maven will use ALPN on OpenJDK 8. 505 * Drop ALPN support in Android. There's a concurrency bug in all 569 * New: Use ALPN on Android platforms that support it (4.4+)
|
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/parent/2.5.0/ |
parent-2.5.0.pom | 46 <!-- ALPN library targeted to Java 7 --> 47 <alpn.jdk7.version>7.1.2.v20141202</alpn.jdk7.version> 48 <!-- ALPN library targeted to Java 8 update 25. --> 49 <alpn.jdk8.version>8.1.2.v20141202</alpn.jdk8.version> 227 <id>alpn-when-jdk7</id> 232 <bootclasspathPrefix>${settings.localRepository}/org/mortbay/jetty/alpn/alpn-boot/${alpn.jdk7.version}/alpn-boot-${alpn.jdk7.version}.jar</bootclasspathPrefix [all...] |
/external/curl/docs/ |
HTTP2.md | 38 ALPN (or NPN) to negotiate which protocol to continue with. Possibly introduce 44 ALPN is the TLS extension that HTTP/2 is expected to use. The NPN extension is 45 for a similar purpose, was made prior to ALPN and is used for SPDY so early 46 HTTP/2 servers are implemented using NPN before ALPN support is widespread. 49 applications to explicitly disable ALPN or NPN. 54 The challenge is the ALPN and NPN support and all our different SSL 58 - OpenSSL: ALPN and NPN 59 - libressl: ALPN and NPN 60 - BoringSSL: ALPN and NPN 61 - NSS: ALPN and NP [all...] |
/external/okhttp/benchmarks/ |
pom.xml | 100 <id>alpn-when-jdk7</id> 106 <groupId>org.mortbay.jetty.alpn</groupId> 107 <artifactId>alpn-boot</artifactId> 108 <version>${alpn.jdk7.version}</version> 114 <id>alpn-when-jdk8</id> 120 <groupId>org.mortbay.jetty.alpn</groupId> 121 <artifactId>alpn-boot</artifactId> 122 <version>${alpn.jdk8.version}</version>
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Platform.java | 48 * <h3>ALPN (Application Layer Protocol Negotiation)</h3> 145 // Find Jetty's ALPN extension for OpenJDK. 147 String negoClassName = "org.eclipse.jetty.alpn.ALPN"; 208 // Enable ALPN. 249 * OpenJDK 7+ with {@code org.mortbay.jetty.alpn/alpn-boot} in the boot class path. 272 if (protocol == Protocol.HTTP_1_0) continue; // No HTTP/1.0 for ALPN. 297 logger.log(Level.INFO, "ALPN callback dropped: SPDY and HTTP/2 are disabled. " 298 + "Is alpn-boot on the boot class path?") [all...] |
/external/curl/docs/libcurl/opts/ |
CURLOPT_SSL_ENABLE_ALPN.3 | 25 CURLOPT_SSL_ENABLE_ALPN \- enable ALPN 32 option enables/disables ALPN in the SSL handshake (if the SSL backend libcurl
|
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
spdy_view.html | 21 <li>ALPN Protocols: <span id=spdy-view-alpn-protocols></span></li>
|
spdy_view.js | 38 SpdyView.STATUS_ALPN_PROTOCOLS = 'spdy-view-alpn-protocols';
|
/prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/ |
netty-handler-4.1.0.CR3.pom | 64 <groupId>org.eclipse.jetty.alpn</groupId> 65 <artifactId>alpn-api</artifactId>
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
Variant.java | 25 /** The protocol as selected using ALPN. */
|
/external/boringssl/src/tool/ |
client.cc | 55 "-alpn-protos", kOptionalArgument, 56 "A comma-separated list of ALPN protocols to advertise", 196 if (args_map.count("-alpn-protos") != 0) { 197 const std::string &alpn_protos = args_map["-alpn-protos"]; 207 fprintf(stderr, "Invalid ALPN protocols: '%s'\n", alpn_protos.c_str());
|
transport_common.cc | 189 const uint8_t *alpn; local 191 SSL_get0_alpn_selected(ssl, &alpn, &alpn_len); 192 fprintf(stderr, " ALPN protocol: %.*s\n", alpn_len, alpn);
|
/external/okhttp/android/main/java/com/squareup/okhttp/internal/ |
Platform.java | 78 // Enable ALPN. 129 if (protocol == Protocol.HTTP_1_0) continue; // No HTTP/1.0 for ALPN.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Protocol.java | 22 * href="http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg">ALPN</a> 91 * Returns the string used to identify this protocol for ALPN, like
|
/external/boringssl/src/ssl/test/ |
test_config.cc | 113 { "-advertise-alpn", &TestConfig::advertise_alpn }, 114 { "-expect-alpn", &TestConfig::expected_alpn }, 115 { "-expect-advertised-alpn", &TestConfig::expected_advertised_alpn }, 116 { "-select-alpn", &TestConfig::select_alpn },
|
/external/curl/lib/vtls/ |
cyassl.c | 87 /* HAVE_ALPN is wolfSSL's build time symbol for enabling ALPN in options.h. */ 357 /* wolfSSL's ALPN protocol name list format is a comma separated string of 363 infof(data, "ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID); 368 infof(data, "ALPN, offering %s\n", ALPN_HTTP_1_1); 373 failf(data, "SSL: failed setting ALPN protocols"); 543 infof(data, "ALPN, server accepted to use %.*s\n", protocol_len, 557 infof(data, "ALPN, unrecognized protocol %.*s\n", protocol_len, 561 infof(data, "ALPN, server did not agree to a protocol\n"); 563 failf(data, "ALPN, failure getting protocol, error %d", rc);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
ExternalHttp2Example.java | 51 // If null, probably you didn't add jetty's alpn jar to your boot classpath!
|
ExternalSpdyExample.java | 51 // If null, probably you didn't add jetty's alpn jar to your boot classpath!
|
/prebuilts/tools/common/m2/repository/io/netty/netty-parent/4.1.0.CR3/ |
netty-parent-4.1.0.CR3.pom | 184 This profile exists because either ALPN or NPN can exits on the class path at once, but not both. 186 where both could be used. ALPN is the default and this profile is enabled with a -Dforcenpn=true arugument 206 <jetty.alpnAgent.path>${settings.localRepository}/kr/motd/javaagent/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path> 217 <!-- Default to ALPN. See forcenpn profile to force NPN --> 288 <groupId>org.eclipse.jetty.alpn</groupId> 289 <artifactId>alpn-api</artifactId> 291 <scope>provided</scope> <!-- Provided by alpn-boot --> 726 <id>get-jetty-alpn-agent</id> 733 <artifactId>jetty-alpn-agent</artifactId [all...] |
/external/boringssl/src/ssl/test/runner/ |
runner.go | 124 alpn = 1 151 // negotiate a next protocol via NPN or ALPN. 356 if (test.expectedNextProtoType == alpn) != connState.NegotiatedProtocolFromALPN { [all...] |
/external/curl/projects/ |
wolfssl_options.h | 21 --enable-alpn \
|
/external/okhttp/android/test/java/com/squareup/okhttp/internal/ |
PlatformTest.java | 67 String selectedProtocol = "alpn";
|
/external/curl/tests/ |
manpage-scan.pl | 135 '--no-alpn' => 1, 142 '--alpn' => 6,
|
/prebuilts/go/darwin-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"},
|