config_ssid.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. /*
  2. * WPA Supplicant / Network configuration structures
  3. * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef CONFIG_SSID_H
  9. #define CONFIG_SSID_H
  10. #include "common/defs.h"
  11. #include "utils/list.h"
  12. #include "eap_peer/eap_config.h"
  13. #define MAX_SSID_LEN 32
  14. #define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
  15. #define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
  16. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
  17. #define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
  18. #define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
  19. #define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
  20. #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
  21. WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
  22. #define DEFAULT_FRAGMENT_SIZE 1398
  23. #define DEFAULT_BG_SCAN_PERIOD -1
  24. #define DEFAULT_DISABLE_HT 0
  25. #define DEFAULT_DISABLE_HT40 0
  26. #define DEFAULT_DISABLE_SGI 0
  27. #define DEFAULT_DISABLE_LDPC 0
  28. #define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
  29. #define DEFAULT_AMPDU_FACTOR -1 /* no change */
  30. #define DEFAULT_AMPDU_DENSITY -1 /* no change */
  31. #define DEFAULT_USER_SELECTED_SIM 1
  32. struct psk_list_entry {
  33. struct dl_list list;
  34. u8 addr[ETH_ALEN];
  35. u8 psk[32];
  36. u8 p2p;
  37. };
  38. /**
  39. * struct wpa_ssid - Network configuration data
  40. *
  41. * This structure includes all the configuration variables for a network. This
  42. * data is included in the per-interface configuration data as an element of
  43. * the network list, struct wpa_config::ssid. Each network block in the
  44. * configuration is mapped to a struct wpa_ssid instance.
  45. */
  46. struct wpa_ssid {
  47. /**
  48. * next - Next network in global list
  49. *
  50. * This pointer can be used to iterate over all networks. The head of
  51. * this list is stored in the ssid field of struct wpa_config.
  52. */
  53. struct wpa_ssid *next;
  54. /**
  55. * pnext - Next network in per-priority list
  56. *
  57. * This pointer can be used to iterate over all networks in the same
  58. * priority class. The heads of these list are stored in the pssid
  59. * fields of struct wpa_config.
  60. */
  61. struct wpa_ssid *pnext;
  62. /**
  63. * id - Unique id for the network
  64. *
  65. * This identifier is used as a unique identifier for each network
  66. * block when using the control interface. Each network is allocated an
  67. * id when it is being created, either when reading the configuration
  68. * file or when a new network is added through the control interface.
  69. */
  70. int id;
  71. /**
  72. * priority - Priority group
  73. *
  74. * By default, all networks will get same priority group (0). If some
  75. * of the networks are more desirable, this field can be used to change
  76. * the order in which wpa_supplicant goes through the networks when
  77. * selecting a BSS. The priority groups will be iterated in decreasing
  78. * priority (i.e., the larger the priority value, the sooner the
  79. * network is matched against the scan results). Within each priority
  80. * group, networks will be selected based on security policy, signal
  81. * strength, etc.
  82. *
  83. * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
  84. * not using this priority to select the order for scanning. Instead,
  85. * they try the networks in the order that used in the configuration
  86. * file.
  87. */
  88. int priority;
  89. /**
  90. * ssid - Service set identifier (network name)
  91. *
  92. * This is the SSID for the network. For wireless interfaces, this is
  93. * used to select which network will be used. If set to %NULL (or
  94. * ssid_len=0), any SSID can be used. For wired interfaces, this must
  95. * be set to %NULL. Note: SSID may contain any characters, even nul
  96. * (ASCII 0) and as such, this should not be assumed to be a nul
  97. * terminated string. ssid_len defines how many characters are valid
  98. * and the ssid field is not guaranteed to be nul terminated.
  99. */
  100. u8 *ssid;
  101. /**
  102. * ssid_len - Length of the SSID
  103. */
  104. size_t ssid_len;
  105. /**
  106. * bssid - BSSID
  107. *
  108. * If set, this network block is used only when associating with the AP
  109. * using the configured BSSID
  110. *
  111. * If this is a persistent P2P group (disabled == 2), this is the GO
  112. * Device Address.
  113. */
  114. u8 bssid[ETH_ALEN];
  115. /**
  116. * bssid_set - Whether BSSID is configured for this network
  117. */
  118. int bssid_set;
  119. /**
  120. * go_p2p_dev_addr - GO's P2P Device Address or all zeros if not set
  121. */
  122. u8 go_p2p_dev_addr[ETH_ALEN];
  123. /**
  124. * psk - WPA pre-shared key (256 bits)
  125. */
  126. u8 psk[32];
  127. /**
  128. * psk_set - Whether PSK field is configured
  129. */
  130. int psk_set;
  131. /**
  132. * passphrase - WPA ASCII passphrase
  133. *
  134. * If this is set, psk will be generated using the SSID and passphrase
  135. * configured for the network. ASCII passphrase must be between 8 and
  136. * 63 characters (inclusive).
  137. */
  138. char *passphrase;
  139. /**
  140. * ext_psk - PSK/passphrase name in external storage
  141. *
  142. * If this is set, PSK/passphrase will be fetched from external storage
  143. * when requesting association with the network.
  144. */
  145. char *ext_psk;
  146. /**
  147. * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
  148. */
  149. int pairwise_cipher;
  150. /**
  151. * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
  152. */
  153. int group_cipher;
  154. /**
  155. * key_mgmt - Bitfield of allowed key management protocols
  156. *
  157. * WPA_KEY_MGMT_*
  158. */
  159. int key_mgmt;
  160. /**
  161. * bg_scan_period - Background scan period in seconds, 0 to disable, or
  162. * -1 to indicate no change to default driver configuration
  163. */
  164. int bg_scan_period;
  165. /**
  166. * proto - Bitfield of allowed protocols, WPA_PROTO_*
  167. */
  168. int proto;
  169. /**
  170. * auth_alg - Bitfield of allowed authentication algorithms
  171. *
  172. * WPA_AUTH_ALG_*
  173. */
  174. int auth_alg;
  175. /**
  176. * scan_ssid - Scan this SSID with Probe Requests
  177. *
  178. * scan_ssid can be used to scan for APs using hidden SSIDs.
  179. * Note: Many drivers do not support this. ap_mode=2 can be used with
  180. * such drivers to use hidden SSIDs.
  181. */
  182. int scan_ssid;
  183. #ifdef IEEE8021X_EAPOL
  184. #define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
  185. #define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
  186. /**
  187. * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
  188. */
  189. int eapol_flags;
  190. /**
  191. * eap - EAP peer configuration for this network
  192. */
  193. struct eap_peer_config eap;
  194. #endif /* IEEE8021X_EAPOL */
  195. #define NUM_WEP_KEYS 4
  196. #define MAX_WEP_KEY_LEN 16
  197. /**
  198. * wep_key - WEP keys
  199. */
  200. u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
  201. /**
  202. * wep_key_len - WEP key lengths
  203. */
  204. size_t wep_key_len[NUM_WEP_KEYS];
  205. /**
  206. * wep_tx_keyidx - Default key index for TX frames using WEP
  207. */
  208. int wep_tx_keyidx;
  209. /**
  210. * proactive_key_caching - Enable proactive key caching
  211. *
  212. * This field can be used to enable proactive key caching which is also
  213. * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
  214. * by default unless default value is changed with the global okc=1
  215. * parameter. Enable by setting this to 1.
  216. *
  217. * Proactive key caching is used to make supplicant assume that the APs
  218. * are using the same PMK and generate PMKSA cache entries without
  219. * doing RSN pre-authentication. This requires support from the AP side
  220. * and is normally used with wireless switches that co-locate the
  221. * authenticator.
  222. *
  223. * Internally, special value -1 is used to indicate that the parameter
  224. * was not specified in the configuration (i.e., default behavior is
  225. * followed).
  226. */
  227. int proactive_key_caching;
  228. /**
  229. * mixed_cell - Whether mixed cells are allowed
  230. *
  231. * This option can be used to configure whether so called mixed cells,
  232. * i.e., networks that use both plaintext and encryption in the same
  233. * SSID, are allowed. This is disabled (0) by default. Enable by
  234. * setting this to 1.
  235. */
  236. int mixed_cell;
  237. #ifdef IEEE8021X_EAPOL
  238. /**
  239. * leap - Number of EAP methods using LEAP
  240. *
  241. * This field should be set to 1 if LEAP is enabled. This is used to
  242. * select IEEE 802.11 authentication algorithm.
  243. */
  244. int leap;
  245. /**
  246. * non_leap - Number of EAP methods not using LEAP
  247. *
  248. * This field should be set to >0 if any EAP method other than LEAP is
  249. * enabled. This is used to select IEEE 802.11 authentication
  250. * algorithm.
  251. */
  252. int non_leap;
  253. /**
  254. * eap_workaround - EAP workarounds enabled
  255. *
  256. * wpa_supplicant supports number of "EAP workarounds" to work around
  257. * interoperability issues with incorrectly behaving authentication
  258. * servers. This is recommended to be enabled by default because some
  259. * of the issues are present in large number of authentication servers.
  260. *
  261. * Strict EAP conformance mode can be configured by disabling
  262. * workarounds with eap_workaround = 0.
  263. */
  264. unsigned int eap_workaround;
  265. #endif /* IEEE8021X_EAPOL */
  266. /**
  267. * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
  268. *
  269. * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
  270. *
  271. * 1 = IBSS (ad-hoc, peer-to-peer)
  272. *
  273. * 2 = AP (access point)
  274. *
  275. * 3 = P2P Group Owner (can be set in the configuration file)
  276. *
  277. * 4 = P2P Group Formation (used internally; not in configuration
  278. * files)
  279. *
  280. * Note: IBSS can only be used with key_mgmt NONE (plaintext and static
  281. * WEP) and WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE
  282. * (fixed group key TKIP/CCMP) is available for backwards compatibility,
  283. * but its use is deprecated. WPA-None requires following network block
  284. * options: proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or
  285. * CCMP, but not both), and psk must also be set (either directly or
  286. * using ASCII passphrase).
  287. */
  288. enum wpas_mode {
  289. WPAS_MODE_INFRA = 0,
  290. WPAS_MODE_IBSS = 1,
  291. WPAS_MODE_AP = 2,
  292. WPAS_MODE_P2P_GO = 3,
  293. WPAS_MODE_P2P_GROUP_FORMATION = 4,
  294. } mode;
  295. /**
  296. * disabled - Whether this network is currently disabled
  297. *
  298. * 0 = this network can be used (default).
  299. * 1 = this network block is disabled (can be enabled through
  300. * ctrl_iface, e.g., with wpa_cli or wpa_gui).
  301. * 2 = this network block includes parameters for a persistent P2P
  302. * group (can be used with P2P ctrl_iface commands)
  303. */
  304. int disabled;
  305. /**
  306. * disabled_for_connect - Whether this network was temporarily disabled
  307. *
  308. * This flag is used to reenable all the temporarily disabled networks
  309. * after either the success or failure of a WPS connection.
  310. */
  311. int disabled_for_connect;
  312. /**
  313. * peerkey - Whether PeerKey handshake for direct links is allowed
  314. *
  315. * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
  316. * enabled.
  317. *
  318. * 0 = disabled (default)
  319. * 1 = enabled
  320. */
  321. int peerkey;
  322. /**
  323. * id_str - Network identifier string for external scripts
  324. *
  325. * This value is passed to external ctrl_iface monitors in
  326. * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
  327. * environment variable for action scripts.
  328. */
  329. char *id_str;
  330. #ifdef CONFIG_IEEE80211W
  331. /**
  332. * ieee80211w - Whether management frame protection is enabled
  333. *
  334. * This value is used to configure policy for management frame
  335. * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
  336. * This is disabled by default unless the default value has been changed
  337. * with the global pmf=1/2 parameter.
  338. *
  339. * Internally, special value 3 is used to indicate that the parameter
  340. * was not specified in the configuration (i.e., default behavior is
  341. * followed).
  342. */
  343. enum mfp_options ieee80211w;
  344. #endif /* CONFIG_IEEE80211W */
  345. /**
  346. * frequency - Channel frequency in megahertz (MHz) for IBSS
  347. *
  348. * This value is used to configure the initial channel for IBSS (adhoc)
  349. * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
  350. * the infrastructure mode. In addition, this value is only used by the
  351. * station that creates the IBSS. If an IBSS network with the
  352. * configured SSID is already present, the frequency of the network
  353. * will be used instead of this configured value.
  354. */
  355. int frequency;
  356. int ht40;
  357. int vht;
  358. /**
  359. * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
  360. *
  361. * This value can be used to enforce rekeying of PTK to mitigate some
  362. * attacks against TKIP deficiencies.
  363. */
  364. int wpa_ptk_rekey;
  365. /**
  366. * scan_freq - Array of frequencies to scan or %NULL for all
  367. *
  368. * This is an optional zero-terminated array of frequencies in
  369. * megahertz (MHz) to include in scan requests when searching for this
  370. * network. This can be used to speed up scanning when the network is
  371. * known to not use all possible channels.
  372. */
  373. int *scan_freq;
  374. /**
  375. * bgscan - Background scan and roaming parameters or %NULL if none
  376. *
  377. * This is an optional set of parameters for background scanning and
  378. * roaming within a network (ESS) in following format:
  379. * <bgscan module name>:<module parameters>
  380. */
  381. char *bgscan;
  382. /**
  383. * ignore_broadcast_ssid - Hide SSID in AP mode
  384. *
  385. * Send empty SSID in beacons and ignore probe request frames that do
  386. * not specify full SSID, i.e., require stations to know SSID.
  387. * default: disabled (0)
  388. * 1 = send empty (length=0) SSID in beacon and ignore probe request
  389. * for broadcast SSID
  390. * 2 = clear SSID (ASCII 0), but keep the original length (this may be
  391. * required with some clients that do not support empty SSID) and
  392. * ignore probe requests for broadcast SSID
  393. */
  394. int ignore_broadcast_ssid;
  395. /**
  396. * freq_list - Array of allowed frequencies or %NULL for all
  397. *
  398. * This is an optional zero-terminated array of frequencies in
  399. * megahertz (MHz) to allow for selecting the BSS. If set, scan results
  400. * that do not match any of the specified frequencies are not
  401. * considered when selecting a BSS.
  402. */
  403. int *freq_list;
  404. /**
  405. * p2p_client_list - List of P2P Clients in a persistent group (GO)
  406. *
  407. * This is a list of P2P Clients (P2P Device Address) that have joined
  408. * the persistent group. This is maintained on the GO for persistent
  409. * group entries (disabled == 2).
  410. */
  411. u8 *p2p_client_list;
  412. /**
  413. * num_p2p_clients - Number of entries in p2p_client_list
  414. */
  415. size_t num_p2p_clients;
  416. #ifndef P2P_MAX_STORED_CLIENTS
  417. #define P2P_MAX_STORED_CLIENTS 100
  418. #endif /* P2P_MAX_STORED_CLIENTS */
  419. /**
  420. * psk_list - Per-client PSKs (struct psk_list_entry)
  421. */
  422. struct dl_list psk_list;
  423. /**
  424. * p2p_group - Network generated as a P2P group (used internally)
  425. */
  426. int p2p_group;
  427. /**
  428. * p2p_persistent_group - Whether this is a persistent group
  429. */
  430. int p2p_persistent_group;
  431. /**
  432. * temporary - Whether this network is temporary and not to be saved
  433. */
  434. int temporary;
  435. /**
  436. * export_keys - Whether keys may be exported
  437. *
  438. * This attribute will be set when keys are determined through
  439. * WPS or similar so that they may be exported.
  440. */
  441. int export_keys;
  442. #ifdef CONFIG_HT_OVERRIDES
  443. /**
  444. * disable_ht - Disable HT (IEEE 802.11n) for this network
  445. *
  446. * By default, use it if it is available, but this can be configured
  447. * to 1 to have it disabled.
  448. */
  449. int disable_ht;
  450. /**
  451. * disable_ht40 - Disable HT40 for this network
  452. *
  453. * By default, use it if it is available, but this can be configured
  454. * to 1 to have it disabled.
  455. */
  456. int disable_ht40;
  457. /**
  458. * disable_sgi - Disable SGI (Short Guard Interval) for this network
  459. *
  460. * By default, use it if it is available, but this can be configured
  461. * to 1 to have it disabled.
  462. */
  463. int disable_sgi;
  464. /**
  465. * disable_ldpc - Disable LDPC for this network
  466. *
  467. * By default, use it if it is available, but this can be configured
  468. * to 1 to have it disabled.
  469. */
  470. int disable_ldpc;
  471. /**
  472. * ht40_intolerant - Indicate 40 MHz intolerant for this network
  473. */
  474. int ht40_intolerant;
  475. /**
  476. * disable_max_amsdu - Disable MAX A-MSDU
  477. *
  478. * A-MDSU will be 3839 bytes when disabled, or 7935
  479. * when enabled (assuming it is otherwise supported)
  480. * -1 (default) means do not apply any settings to the kernel.
  481. */
  482. int disable_max_amsdu;
  483. /**
  484. * ampdu_factor - Maximum A-MPDU Length Exponent
  485. *
  486. * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  487. */
  488. int ampdu_factor;
  489. /**
  490. * ampdu_density - Minimum A-MPDU Start Spacing
  491. *
  492. * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
  493. */
  494. int ampdu_density;
  495. /**
  496. * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
  497. *
  498. * By default (empty string): Use whatever the OS has configured.
  499. */
  500. char *ht_mcs;
  501. #endif /* CONFIG_HT_OVERRIDES */
  502. #ifdef CONFIG_VHT_OVERRIDES
  503. /**
  504. * disable_vht - Disable VHT (IEEE 802.11ac) for this network
  505. *
  506. * By default, use it if it is available, but this can be configured
  507. * to 1 to have it disabled.
  508. */
  509. int disable_vht;
  510. /**
  511. * vht_capa - VHT capabilities to use
  512. */
  513. unsigned int vht_capa;
  514. /**
  515. * vht_capa_mask - mask for VHT capabilities
  516. */
  517. unsigned int vht_capa_mask;
  518. int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2,
  519. vht_rx_mcs_nss_3, vht_rx_mcs_nss_4,
  520. vht_rx_mcs_nss_5, vht_rx_mcs_nss_6,
  521. vht_rx_mcs_nss_7, vht_rx_mcs_nss_8;
  522. int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2,
  523. vht_tx_mcs_nss_3, vht_tx_mcs_nss_4,
  524. vht_tx_mcs_nss_5, vht_tx_mcs_nss_6,
  525. vht_tx_mcs_nss_7, vht_tx_mcs_nss_8;
  526. #endif /* CONFIG_VHT_OVERRIDES */
  527. /**
  528. * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
  529. *
  530. * This timeout value is used in AP mode to clean up inactive stations.
  531. * By default: 300 seconds.
  532. */
  533. int ap_max_inactivity;
  534. /**
  535. * dtim_period - DTIM period in Beacon intervals
  536. * By default: 2
  537. */
  538. int dtim_period;
  539. /**
  540. * beacon_int - Beacon interval (default: 100 TU)
  541. */
  542. int beacon_int;
  543. /**
  544. * auth_failures - Number of consecutive authentication failures
  545. */
  546. unsigned int auth_failures;
  547. /**
  548. * disabled_until - Network block disabled until this time if non-zero
  549. */
  550. struct os_reltime disabled_until;
  551. /**
  552. * parent_cred - Pointer to parent wpa_cred entry
  553. *
  554. * This pointer can be used to delete temporary networks when a wpa_cred
  555. * that was used to create them is removed. This pointer should not be
  556. * dereferences since it may not be updated in all cases.
  557. */
  558. void *parent_cred;
  559. #ifdef CONFIG_MACSEC
  560. /**
  561. * macsec_policy - Determines the policy for MACsec secure session
  562. *
  563. * 0: MACsec not in use (default)
  564. * 1: MACsec enabled - Should secure, accept key server's advice to
  565. * determine whether to use a secure session or not.
  566. */
  567. int macsec_policy;
  568. #endif /* CONFIG_MACSEC */
  569. #ifdef CONFIG_HS20
  570. int update_identifier;
  571. #endif /* CONFIG_HS20 */
  572. unsigned int wps_run;
  573. /**
  574. * mac_addr - MAC address policy
  575. *
  576. * 0 = use permanent MAC address
  577. * 1 = use random MAC address for each ESS connection
  578. * 2 = like 1, but maintain OUI (with local admin bit set)
  579. *
  580. * Internally, special value -1 is used to indicate that the parameter
  581. * was not specified in the configuration (i.e., default behavior is
  582. * followed).
  583. */
  584. int mac_addr;
  585. };
  586. #endif /* CONFIG_SSID_H */