Searched refs:in_end (Results 1 – 2 of 2) sorted by relevance
/hostap-latest/src/tls/ |
D | tlsv1_client.c | 169 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local 238 in_end = in_msg + in_msg_len; in tlsv1_client_handshake() 242 while (in_pos < in_end) { in tlsv1_client_handshake() 243 in_msg_len = in_end - in_pos; in tlsv1_client_handshake() 334 const u8 *in_end, *pos; in tlsv1_client_decrypt() local 356 in_end = in_data + in_len; in tlsv1_client_decrypt() 358 while (pos < in_end) { in tlsv1_client_decrypt() 360 if (wpabuf_resize(&buf, in_end - pos) < 0) { in tlsv1_client_decrypt() 366 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt() 376 partial = wpabuf_alloc_copy(pos, in_end - pos); in tlsv1_client_decrypt()
|
D | tlsv1_server.c | 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local 174 in_end = in_msg + in_msg_len; in tlsv1_server_handshake() 178 while (in_pos < in_end) { in tlsv1_server_handshake() 179 in_msg_len = in_end - in_pos; in tlsv1_server_handshake() 264 const u8 *in_end, *pos; in tlsv1_server_decrypt() local 270 in_end = in_data + in_len; in tlsv1_server_decrypt() 274 while (pos < in_end) { in tlsv1_server_decrypt() 277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
|