Home
last modified time | relevance | path

Searched refs:proto (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-3.7.0/components/mbedtls/port/
Dnet_sockets.c59 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-3.7.0/components/wpa_supplicant/esp_supplicant/src/
Desp_wpa_main.c113 void wpa_config_assoc_ie(u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len) in wpa_config_assoc_ie() argument
115 if (proto == BIT(0)) { in wpa_config_assoc_ie()
228 data->proto = ie.proto; in wpa_parse_wpa_ie_wrapper()
Desp_wpas_glue.c61 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()
Desp_wpas_glue.h31 int wpa_ether_send(void *ctx, const u8 *dest, u16 proto,
Desp_wifi_driver.h106 int proto; member
Desp_wps.c261 static inline int wps_sm_ether_send(struct wps_sm *sm, u16 proto, in wps_sm_ether_send() argument
272 return wpa_ether_send(sm, bssid, proto, data, data_len); in wps_sm_ether_send()
/hal_espressif-3.7.0/components/wpa_supplicant/src/rsn_supp/
Dwpa_i.h74 unsigned int proto; member
185 void wpa_config_assoc_ie(u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len);
Dwpa.c214 static inline int wpa_sm_ether_send(struct wpa_sm *sm, const u8 *dest, u16 proto, in wpa_sm_ether_send() argument
217 return wpa_ether_send(sm, dest, proto, data, data_len); in wpa_sm_ether_send()
233 int ver, const u8 *dest, u16 proto, in wpa_eapol_key_send() argument
262 wpa_sm_ether_send(sm, dest, proto, msg, msg_len); in wpa_eapol_key_send()
311 reply->type = sm->proto == WPA_PROTO_RSN ? in wpa_sm_key_request()
445 if (sm->proto == WPA_PROTO_RSN && in wpa_supplicant_get_pmk()
598 reply->type = sm->proto == WPA_PROTO_RSN ? in wpa_supplicant_send_2_of_4()
602 if (sm->proto == WPA_PROTO_RSN) in wpa_supplicant_send_2_of_4()
662 if (sm->proto == WPA_PROTO_RSN) { in wpa_supplicant_process_1_of_4()
1140 if (sm->proto == WPA_PROTO_WPA && in wpa_supplicant_validate_ie()
[all …]
Dwpa_ie.c281 if (sm->proto == WPA_PROTO_RSN) { in wpa_gen_wpa_ie()
287 } else if (sm->proto == WPA_PROTO_WAPI) { in wpa_gen_wpa_ie()
/hal_espressif-3.7.0/components/wpa_supplicant/src/common/
Dwpa_common.c403 data->proto = WPA_PROTO_RSN; in wpa_parse_wpa_ie_rsn()
543 data->proto = WPA_PROTO_WPA; in wpa_parse_wpa_ie_wpa()
962 if (ie1d.proto == ie2d.proto && in wpa_compare_rsn_ie()
1373 u32 wpa_cipher_to_suite(int proto, int cipher) in wpa_cipher_to_suite() argument
1376 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
1385 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
1388 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
1391 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
1394 return (proto == WPA_PROTO_RSN ? in wpa_cipher_to_suite()
Dwpa_common.h352 int proto; member
442 u32 wpa_cipher_to_suite(int proto, int cipher);
/hal_espressif-3.7.0/components/wpa_supplicant/src/ap/
Dwpa_auth.h198 int (*send_ether)(void *ctx, const u8 *dst, u16 proto, const u8 *data,
/hal_espressif-3.7.0/components/esp_wifi/include/
Desp_mesh.h471 mesh_proto_t proto; /**< data protocol */ member
/hal_espressif-3.7.0/components/esp_netif/lwip/
Desp_netif_lwip.c109 #define LOG_NETIF_DISABLED_AND_DO(proto, action) \ argument
111 ESP_LOGE(TAG, "%s not supported, please enable it in lwIP component configuration", proto); \