Home | History | Annotate | Download | only in ssl

Lines Matching refs:peer

1133       // time out because the peer never received our close_notify. Report to
1988 int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, const uint8_t *peer,
1994 // For each protocol in peer preference order, see if we support it.
1997 if (peer[i] == supported[j] &&
1998 OPENSSL_memcmp(&peer[i + 1], &supported[j + 1], peer[i]) == 0) {
2000 result = &peer[i];
2007 i += peer[i];
2011 // There's no overlap between our protocols and the peer's list.