Home | History | Annotate | Download | only in native

Lines Matching refs:npn

2030  * We store the NPN protocols list so we can either send it (from the server) or
2119 * @param npnProtocols NPN protocols so that they may be advertised (by the
2121 * unless NPN is enabled.
3184 // Enable False Start on the client if the server understands NPN
3195 JNI_TRACE("ssl=%p next_proto_select_callback NPN negotiated", ssl);
3198 JNI_TRACE("ssl=%p next_proto_select_callback NPN unsupported", ssl);
3201 JNI_TRACE("ssl=%p next_proto_select_callback NPN no overlap", ssl);
3251 const jbyte* npn;
3253 SSL_get0_next_proto_negotiated(ssl, reinterpret_cast<const unsigned char**>(&npn), &npnLength);
3259 env->SetByteArrayRegion(result, 0, npnLength, npn);
3272 JNI_TRACE("ssl=%p NativeCrypto_SSL_do_handshake fd=%p shc=%p timeout_millis=%d client_mode=%d npn=%p",