Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: chromeos_network.h

Issue 6293027: Handle new EAP fields and provide backwards compatibility for old (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cros.git@master
Patch Set: Make comma logic more readable. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos_network.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos_network.h
diff --git a/chromeos_network.h b/chromeos_network.h
index a0b12ac38fa3e6a74cc7989b040024bd835288b1..52a1a03649607cc5e3381bd40507d7415f50d6f2 100644
--- a/chromeos_network.h
+++ b/chromeos_network.h
@@ -193,7 +193,7 @@ struct ServiceInfo {
bool passphrase_required;
const char* passphrase;
const char* identity;
- const char* cert_path;
+ const char* cert_path; // DEPRECATED - use EAP fields below
int64 strength;
bool favorite;
bool auto_connect;
@@ -208,6 +208,19 @@ struct ServiceInfo {
bool is_active;
bool connectable;
ConnectivityState connectivity_state;
+ // EAP fields (plus identity from above)
+ const char *eap;
+ const char *inner_eap;
+ const char *anonymous_identity;
+ const char *client_cert;
+ const char *cert_id;
+ const char *private_key;
+ const char *private_key_passwd;
+ const char *key_id;
+ const char *ca_cert;
+ const char *ca_cert_id;
+ const char *pin;
+ const char *password;
};
struct SystemInfo {
« no previous file with comments | « no previous file | chromeos_network.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698