Home
last modified time | relevance | path

Searched refs:client_ip (Results 1 – 6 of 6) sorted by relevance

/mbedtls-latest/programs/fuzz/
Dfuzz_dtlsserver.c20 const unsigned char client_ip[4] = { 0x7F, 0, 0, 1 }; variable
131 if (mbedtls_ssl_set_client_transport_id(&ssl, client_ip, sizeof(client_ip)) != 0) { in LLVMFuzzerTestOneInput()
141 if (mbedtls_ssl_set_client_transport_id(&ssl, client_ip, sizeof(client_ip)) != 0) { in LLVMFuzzerTestOneInput()
/mbedtls-latest/programs/ssl/
Ddtls_server.c82 unsigned char client_ip[16] = { 0 }; in main() local
260 client_ip, sizeof(client_ip), &cliip_len)) != 0) { in main()
267 client_ip, cliip_len)) != 0) { in main()
Dssl_server2.c1525 unsigned char client_ip[16] = { 0 }; in main() local
3366 client_ip, sizeof(client_ip), &cliip_len)) != 0) { in main()
3397 client_ip, cliip_len)) != 0) { in main()
/mbedtls-latest/library/
Dnet_sockets.c319 void *client_ip, size_t buf_size, size_t *cip_len) in mbedtls_net_accept() argument
399 if (client_ip != NULL) { in mbedtls_net_accept()
408 memcpy(client_ip, &addr4->sin_addr.s_addr, *cip_len); in mbedtls_net_accept()
417 memcpy(client_ip, &addr6->sin6_addr.s6_addr, *cip_len); in mbedtls_net_accept()
/mbedtls-latest/include/mbedtls/
Dnet_sockets.h159 void *client_ip, size_t buf_size, size_t *cip_len);
/mbedtls-latest/
DChangeLog4628 * net_accept() gained new arguments for the size of the client_ip buffer.