wpa_config_blob struct
struct wpa_config_blob - Named configuration blob This data structure is used to provide storage for binary objects to store abstract information like certificates and private keys inlined with the configuration data.
Syntax
struct wpa_config_blob
{
char *name;
const u8 *data;
size_t len;
struct wpa_config_blob *next;
};
Fields
data - Pointer to binary data.
len - Length of binary data.
next - Pointer to next blob in the configuration.