Home | History | Annotate | Download | only in statem

Lines Matching defs:sni

98     PACKET sni, hostname;
100 if (!PACKET_as_length_prefixed_2(pkt, &sni)
102 || PACKET_remaining(&sni) == 0) {
113 * SNI types can exist, to simplify parsing.
115 * Also note that the RFC permits only one SNI value per type,
118 if (!PACKET_get_1(&sni, &servname_type)
120 || !PACKET_as_length_prefixed_2(&sni, &hostname)) {
126 * In TLSv1.2 and below the SNI is associated with the session. In TLSv1.3
127 * we always use the SNI value from the handshake.
141 * Store the requested SNI in the SSL as temporary storage.
154 * In TLSv1.2 and below we should check if the SNI is consistent between
155 * the initial handshake and the resumption. In TLSv1.3 SNI is not
1275 * Prior to TLSv1.3 we ignore any SNI in the current handshake if resuming.