| 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 12 matching lines...) Expand all Loading... |
| 23 #define __CONNMAN_WIFI_H | 23 #define __CONNMAN_WIFI_H |
| 24 | 24 |
| 25 #ifdef __cplusplus | 25 #ifdef __cplusplus |
| 26 extern "C" { | 26 extern "C" { |
| 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, |
| 34 const unsigned char *ssid, unsigned int ssid_len, |
| 35 const char *mode, const char *security); |
| 33 | 36 |
| 34 #define CONNMAN_WIFI_EAP_IDENTITY "WiFi.EAP.Identity" | 37 #define CONNMAN_WIFI_EAP_IDENTITY "WiFi.EAP.Identity" |
| 35 #define CONNMAN_WIFI_EAP_EAP "WiFi.EAP.EAP" | 38 #define CONNMAN_WIFI_EAP_EAP "WiFi.EAP.EAP" |
| 36 #define CONNMAN_WIFI_EAP_INNEREAP "WiFi.EAP.InnerEAP" | 39 #define CONNMAN_WIFI_EAP_INNEREAP "WiFi.EAP.InnerEAP" |
| 37 #define CONNMAN_WIFI_EAP_ANONYMOUSIDENTITY "WiFi.EAP.AnonymousIdentity" | 40 #define CONNMAN_WIFI_EAP_ANONYMOUSIDENTITY "WiFi.EAP.AnonymousIdentity" |
| 38 #define CONNMAN_WIFI_EAP_CLIENTCERT "WiFi.EAP.ClientCert" | 41 #define CONNMAN_WIFI_EAP_CLIENTCERT "WiFi.EAP.ClientCert" |
| 39 #define CONNMAN_WIFI_EAP_CERTID "WiFi.EAP.CertID" | 42 #define CONNMAN_WIFI_EAP_CERTID "WiFi.EAP.CertID" |
| 40 #define CONNMAN_WIFI_EAP_PRIVATEKEY "WiFi.EAP.PrivateKey" | 43 #define CONNMAN_WIFI_EAP_PRIVATEKEY "WiFi.EAP.PrivateKey" |
| 41 #define CONNMAN_WIFI_EAP_PRIVATEKEYPASSWORD "WiFi.EAP.PrivateKeyPassword" | 44 #define CONNMAN_WIFI_EAP_PRIVATEKEYPASSWORD "WiFi.EAP.PrivateKeyPassword" |
| 42 #define CONNMAN_WIFI_EAP_KEYID "WiFi.EAP.KeyID" | 45 #define CONNMAN_WIFI_EAP_KEYID "WiFi.EAP.KeyID" |
| 43 #define CONNMAN_WIFI_EAP_CACERT "WiFi.EAP.CACert" | 46 #define CONNMAN_WIFI_EAP_CACERT "WiFi.EAP.CACert" |
| 44 #define CONNMAN_WIFI_EAP_CACERTID "WiFi.EAP.CACertID" | 47 #define CONNMAN_WIFI_EAP_CACERTID "WiFi.EAP.CACertID" |
| 45 #define CONNMAN_WIFI_EAP_PIN "WiFi.EAP.PIN" | 48 #define CONNMAN_WIFI_EAP_PIN "WiFi.EAP.PIN" |
| 46 #define CONNMAN_WIFI_EAP_PASSWORD "WiFi.EAP.Password" | 49 #define CONNMAN_WIFI_EAP_PASSWORD "WiFi.EAP.Password" |
| 47 #define CONNMAN_WIFI_EAP_KEY_MGMT "WiFi.EAP.KeyMgmt" | 50 #define CONNMAN_WIFI_EAP_KEY_MGMT "WiFi.EAP.KeyMgmt" |
| 48 | 51 |
| 49 #ifdef __cplusplus | 52 #ifdef __cplusplus |
| 50 } | 53 } |
| 51 #endif | 54 #endif |
| 52 | 55 |
| 53 #endif /* __CONNMAN_WIFI_H */ | 56 #endif /* __CONNMAN_WIFI_H */ |
| OLD | NEW |