Select one of the symbols to view example projects that use it.
 
Outline
#define ESP_DPP_I_H
#include "esp_err.h"
#include "utils/includes.h"
#include "utils/common.h"
#include "common/dpp.h"
#include "esp_dpp.h"
#include "esp_wifi_driver.h"
#define DPP_TASK_STACK_SIZE
#define ESP_DPP_PMK_CACHE_DEFAULT_TIMEOUT
SIG_DPP
dpp_event_t
#define BOOTSTRAP_ROC_WAIT_TIME
#define OFFCHAN_TX_WAIT_TIME
dpp_bootstrap_params_t
esp_dpp_context_t
esp_supp_rx_action(uint8_t *, uint8_t *, size_t, uint8_t);
esp_dpp_post_evt(uint32_t, uint32_t);
is_dpp_enabled()
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/esp_supplicant/src/esp_dpp_i.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef ESP_DPP_I_H #define ESP_DPP_I_H #include "esp_err.h" #include "utils/includes.h" #include "utils/common.h" #include "common/dpp.h" #include "esp_dpp.h" #include "esp_wifi_driver.h"6 includes #define DPP_TASK_STACK_SIZE (6144 + TASK_STACK_SIZE_ADD) #define ESP_DPP_PMK_CACHE_DEFAULT_TIMEOUT 86400 * 7 /*!< 7 days */ enum SIG_DPP { SIG_DPP_RESET = 0, SIG_DPP_BOOTSTRAP_GEN, SIG_DPP_RX_ACTION, SIG_DPP_LISTEN_NEXT_CHANNEL, SIG_DPP_DEL_TASK, SIG_DPP_START_NET_INTRO, SIG_DPP_DEINIT_AUTH, SIG_DPP_MAX, }{ ... }; typedef struct { uint32_t id; uint32_t data; }{ ... } dpp_event_t; #define BOOTSTRAP_ROC_WAIT_TIME 500 #define OFFCHAN_TX_WAIT_TIME 500 struct dpp_bootstrap_params_t { enum dpp_bootstrap_type type; uint8_t chan_list[14]; uint8_t num_chan; uint8_t mac[6]; uint32_t info_len; char *info; }{ ... }; struct esp_dpp_context_t { struct dpp_bootstrap_params_t bootstrap_params; struct dpp_authentication *dpp_auth; int gas_dialog_token; esp_supp_dpp_event_cb_t dpp_event_cb; struct dpp_global *dpp_global; wifi_config_t wifi_cfg; int id; }{ ... }; int esp_supp_rx_action(uint8_t *hdr, uint8_t *payload, size_t len, uint8_t channel); esp_err_t esp_dpp_post_evt(uint32_t evt_id, uint32_t data); #ifdef CONFIG_TESTING_OPTIONS int dpp_test_gen_invalid_key(struct wpabuf *msg, const struct dpp_curve_params *curve); char * dpp_corrupt_connector_signature(const char *connector);/* ... */ #endif /* CONFIG_TESTING_OPTIONS */ #ifdef CONFIG_ESP_WIFI_DPP_SUPPORT bool is_dpp_enabled(void); #else static inline bool is_dpp_enabled(void) { return false; }{ ... } /* ... */#endif/* ... */ #endif /* ESP_DPP_I_H */
Details