Searched defs:mesh_id (Results 1 - 8 of 8) sorted by relevance
/external/iw/ |
H A D | interface.c | 174 char *mesh_id = NULL; local 193 if (strcmp(argv[0], "mesh_id") == 0) { 199 mesh_id = argv[0]; 239 if (mesh_id) 240 NLA_PUT(msg, NL80211_ATTR_MESH_ID, strlen(mesh_id), mesh_id); 248 COMMAND(interface, add, "<name> type <type> [mesh_id <meshid>] [4addr on|off] [flags <flag>*] [addr <mac-addr>]", 254 "The mesh_id is used only for mesh mode."); 255 COMMAND(interface, add, "<name> type <type> [mesh_id <meshid>] [4addr on|off] [flags <flag>*] [addr <mac-addr>]", 425 char *mesh_id local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | mesh.c | 452 char *mesh_id, *pos = buf; local 462 mesh_id = os_malloc(elems.mesh_id_len + 1); 463 if (mesh_id == NULL) 466 os_memcpy(mesh_id, elems.mesh_id, elems.mesh_id_len); 467 mesh_id[elems.mesh_id_len] = '\0'; 468 ret = os_snprintf(pos, end - pos, "mesh_id=%s\n", mesh_id); 469 os_free(mesh_id);
|
/external/wpa_supplicant_8/hostapd/src/common/ |
H A D | ieee802_11_common.h | 44 const u8 *mesh_id; member in struct:ieee802_11_elems
|
/external/wpa_supplicant_8/src/common/ |
H A D | ieee802_11_common.h | 44 const u8 *mesh_id; member in struct:ieee802_11_elems
|
/external/wpa_supplicant_8/wpa_supplicant/src/common/ |
H A D | ieee802_11_common.h | 44 const u8 *mesh_id; member in struct:ieee802_11_elems
|
/external/wpa_supplicant_8/hostapd/src/drivers/ |
H A D | driver_nl80211.c | 8341 static int nl80211_put_mesh_id(struct nl_msg *msg, const u8 *mesh_id, argument 8344 if (mesh_id) { 8346 mesh_id, mesh_id_len); 8347 return nla_put(msg, NL80211_ATTR_MESH_ID, mesh_id_len, mesh_id);
|
/external/wpa_supplicant_8/src/drivers/ |
H A D | driver_nl80211.c | 8341 static int nl80211_put_mesh_id(struct nl_msg *msg, const u8 *mesh_id, argument 8344 if (mesh_id) { 8346 mesh_id, mesh_id_len); 8347 return nla_put(msg, NL80211_ATTR_MESH_ID, mesh_id_len, mesh_id);
|
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/ |
H A D | driver_nl80211.c | 8341 static int nl80211_put_mesh_id(struct nl_msg *msg, const u8 *mesh_id, argument 8344 if (mesh_id) { 8346 mesh_id, mesh_id_len); 8347 return nla_put(msg, NL80211_ATTR_MESH_ID, mesh_id_len, mesh_id);
|
Completed in 150 milliseconds