/hal_espressif-latest/components/mbedtls/port/ |
D | net_sockets.c | 59 int mbedtls_net_connect( mbedtls_net_context *ctx, const char *host, const char *port, int proto ) in mbedtls_net_connect() argument 71 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_connect() 72 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_connect() 106 int mbedtls_net_bind( mbedtls_net_context *ctx, const char *bind_ip, const char *port, int proto ) in mbedtls_net_bind() argument 122 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_bind() 123 hints.ai_protocol = proto == MBEDTLS_NET_PROTO_UDP ? IPPROTO_UDP : IPPROTO_TCP; in mbedtls_net_bind() 170 if ( proto == MBEDTLS_NET_PROTO_TCP ) { in mbedtls_net_bind()
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/ |
D | esp_wpas_glue.c | 61 int wpa_ether_send(void *ctx, const u8 *dest, u16 proto, in wpa_ether_send() argument 69 eth->h_proto = host_to_be16(proto); in wpa_ether_send()
|
D | esp_wpa_main.c | 116 void wpa_config_assoc_ie(u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len) in wpa_config_assoc_ie() argument 118 if (proto == BIT(0)) { in wpa_config_assoc_ie() 235 data->proto = ie.proto; in wpa_parse_wpa_ie_wrapper()
|
D | esp_wpas_glue.h | 31 int wpa_ether_send(void *ctx, const u8 *dest, u16 proto,
|
D | esp_wifi_driver.h | 108 int proto; member
|
D | esp_wps.c | 265 static inline int wps_sm_ether_send(struct wps_sm *sm, u16 proto, in wps_sm_ether_send() argument 276 return wpa_ether_send(sm, bssid, proto, data, data_len); in wps_sm_ether_send()
|
/hal_espressif-latest/components/wpa_supplicant/src/rsn_supp/ |
D | wpa_i.h | 74 unsigned int proto; member 185 void wpa_config_assoc_ie(u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len);
|
D | wpa.c | 217 static inline int wpa_sm_ether_send(struct wpa_sm *sm, const u8 *dest, u16 proto, in wpa_sm_ether_send() argument 220 return wpa_ether_send(sm, dest, proto, data, data_len); in wpa_sm_ether_send() 236 int ver, const u8 *dest, u16 proto, in wpa_eapol_key_send() argument 265 wpa_sm_ether_send(sm, dest, proto, msg, msg_len); in wpa_eapol_key_send() 314 reply->type = sm->proto == WPA_PROTO_RSN ? in wpa_sm_key_request() 460 if (sm->proto == WPA_PROTO_RSN && in wpa_supplicant_get_pmk() 613 reply->type = sm->proto == WPA_PROTO_RSN ? in wpa_supplicant_send_2_of_4() 617 if (sm->proto == WPA_PROTO_RSN) in wpa_supplicant_send_2_of_4() 688 if (sm->proto == WPA_PROTO_RSN) { in wpa_supplicant_process_1_of_4() 1168 if (sm->proto == WPA_PROTO_WPA && in wpa_supplicant_validate_ie() [all …]
|
D | wpa_ie.c | 274 if (sm->proto == WPA_PROTO_RSN) { in wpa_gen_wpa_ie() 280 } else if (sm->proto == WPA_PROTO_WAPI) { in wpa_gen_wpa_ie()
|
/hal_espressif-latest/components/wpa_supplicant/src/common/ |
D | wpa_common.c | 415 data->proto = WPA_PROTO_RSN; in wpa_parse_wpa_ie_rsn() 555 data->proto = WPA_PROTO_WPA; in wpa_parse_wpa_ie_wpa() 1013 if (ie1d.proto == ie2d.proto && in wpa_compare_rsn_ie() 1425 u32 wpa_cipher_to_suite(int proto, int cipher) in wpa_cipher_to_suite() argument 1428 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite() 1437 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite() 1440 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite() 1443 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite() 1446 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
|
D | wpa_common.h | 355 int proto; member 446 u32 wpa_cipher_to_suite(int proto, int cipher);
|
/hal_espressif-latest/components/esp_wifi/include/ |
D | esp_mesh.h | 474 mesh_proto_t proto; /**< data protocol */ member
|
/hal_espressif-latest/components/wpa_supplicant/src/ap/ |
D | wpa_auth.h | 198 int (*send_ether)(void *ctx, const u8 *dst, u16 proto, const u8 *data,
|
/hal_espressif-latest/components/esp_netif/lwip/ |
D | esp_netif_lwip.c | 109 #define LOG_NETIF_DISABLED_AND_DO(proto, action) \ argument 111 ESP_LOGE(TAG, "%s not supported, please enable it in lwIP component configuration", proto); \
|