| OLD | NEW |
| 1 /* | 1 /* |
| 2 * | 2 * |
| 3 * Connection Manager | 3 * Connection Manager |
| 4 * | 4 * |
| 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. | 5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved. |
| 6 * | 6 * |
| 7 * This program is free software; you can redistribute it and/or modify | 7 * This program is free software; you can redistribute it and/or modify |
| 8 * it under the terms of the GNU General Public License version 2 as | 8 * it under the terms of the GNU General Public License version 2 as |
| 9 * published by the Free Software Foundation. | 9 * published by the Free Software Foundation. |
| 10 * | 10 * |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #endif | 27 #endif |
| 28 | 28 |
| 29 char *connman_wifi_build_group_name(const unsigned char *ssid, | 29 char *connman_wifi_build_group_name(const unsigned char *ssid, |
| 30 unsigned int ssid_len, | 30 unsigned int ssid_len, |
| 31 const char *mode, | 31 const char *mode, |
| 32 const char *security); | 32 const char *security); |
| 33 char *connman_wifi_build_group(const char *addr, const char *name, | 33 char *connman_wifi_build_group(const char *addr, const char *name, |
| 34 const unsigned char *ssid, unsigned int ssid_len, | 34 const unsigned char *ssid, unsigned int ssid_len, |
| 35 const char *mode, const char *security); | 35 const char *mode, const char *security); |
| 36 | 36 |
| 37 void connman_wifi_append_hidden_ssids(GSList **hidden_ssids); |
| 38 |
| 37 #define CONNMAN_WIFI_AUTHMODE "WiFi.AuthMode" | 39 #define CONNMAN_WIFI_AUTHMODE "WiFi.AuthMode" |
| 38 | 40 |
| 39 #define CONNMAN_WIFI_EAP_IDENTITY "WiFi.EAP.Identity" | 41 #define CONNMAN_WIFI_EAP_IDENTITY "WiFi.EAP.Identity" |
| 40 #define CONNMAN_WIFI_EAP_EAP "WiFi.EAP.EAP" | 42 #define CONNMAN_WIFI_EAP_EAP "WiFi.EAP.EAP" |
| 41 #define CONNMAN_WIFI_EAP_INNEREAP "WiFi.EAP.InnerEAP" | 43 #define CONNMAN_WIFI_EAP_INNEREAP "WiFi.EAP.InnerEAP" |
| 42 #define CONNMAN_WIFI_EAP_ANONYMOUSIDENTITY "WiFi.EAP.AnonymousIdentity" | 44 #define CONNMAN_WIFI_EAP_ANONYMOUSIDENTITY "WiFi.EAP.AnonymousIdentity" |
| 43 #define CONNMAN_WIFI_EAP_CLIENTCERT "WiFi.EAP.ClientCert" | 45 #define CONNMAN_WIFI_EAP_CLIENTCERT "WiFi.EAP.ClientCert" |
| 44 #define CONNMAN_WIFI_EAP_CERTID "WiFi.EAP.CertID" | 46 #define CONNMAN_WIFI_EAP_CERTID "WiFi.EAP.CertID" |
| 45 #define CONNMAN_WIFI_EAP_PRIVATEKEY "WiFi.EAP.PrivateKey" | 47 #define CONNMAN_WIFI_EAP_PRIVATEKEY "WiFi.EAP.PrivateKey" |
| 46 #define CONNMAN_WIFI_EAP_PRIVATEKEYPASSWORD "WiFi.EAP.PrivateKeyPassword" | 48 #define CONNMAN_WIFI_EAP_PRIVATEKEYPASSWORD "WiFi.EAP.PrivateKeyPassword" |
| 47 #define CONNMAN_WIFI_EAP_KEYID "WiFi.EAP.KeyID" | 49 #define CONNMAN_WIFI_EAP_KEYID "WiFi.EAP.KeyID" |
| 48 #define CONNMAN_WIFI_EAP_CACERT "WiFi.EAP.CACert" | 50 #define CONNMAN_WIFI_EAP_CACERT "WiFi.EAP.CACert" |
| 49 #define CONNMAN_WIFI_EAP_CACERTID "WiFi.EAP.CACertID" | 51 #define CONNMAN_WIFI_EAP_CACERTID "WiFi.EAP.CACertID" |
| 50 #define CONNMAN_WIFI_EAP_USESYSTEMCAS "WiFi.EAP.UseSystemCAS" | 52 #define CONNMAN_WIFI_EAP_USESYSTEMCAS "WiFi.EAP.UseSystemCAS" |
| 51 #define CONNMAN_WIFI_EAP_PIN "WiFi.EAP.PIN" | 53 #define CONNMAN_WIFI_EAP_PIN "WiFi.EAP.PIN" |
| 52 #define CONNMAN_WIFI_EAP_PASSWORD "WiFi.EAP.Password" | 54 #define CONNMAN_WIFI_EAP_PASSWORD "WiFi.EAP.Password" |
| 53 #define CONNMAN_WIFI_EAP_KEY_MGMT "WiFi.EAP.KeyMgmt" | 55 #define CONNMAN_WIFI_EAP_KEY_MGMT "WiFi.EAP.KeyMgmt" |
| 54 | 56 |
| 55 #ifdef __cplusplus | 57 #ifdef __cplusplus |
| 56 } | 58 } |
| 57 #endif | 59 #endif |
| 58 | 60 |
| 59 #endif /* __CONNMAN_WIFI_H */ | 61 #endif /* __CONNMAN_WIFI_H */ |
| OLD | NEW |