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

Side by Side Diff: include/service.h

Issue 6659006: flimflam: add support for multiple profiles (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/flimflam.git@master
Patch Set: more ers comments Created 9 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/crypto.h ('k') | include/storage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 CONNMAN_SERVICE_ERROR_NEED_EVDO = 8, 117 CONNMAN_SERVICE_ERROR_NEED_EVDO = 8,
118 CONNMAN_SERVICE_ERROR_NEED_HOME_NETWORK = 9, 118 CONNMAN_SERVICE_ERROR_NEED_HOME_NETWORK = 9,
119 CONNMAN_SERVICE_ERROR_OTASP_FAILED = 10, 119 CONNMAN_SERVICE_ERROR_OTASP_FAILED = 10,
120 CONNMAN_SERVICE_ERROR_AAA_FAILED = 11, 120 CONNMAN_SERVICE_ERROR_AAA_FAILED = 11,
121 121
122 CONNMAN_SERVICE_ERROR_MAX 122 CONNMAN_SERVICE_ERROR_MAX
123 }; 123 };
124 124
125 struct connman_service; 125 struct connman_service;
126 126
127 int connman_service_append_hidden_ssids(GSList **hidden_ssids);
128
129 struct connman_service *connman_service_create(void); 127 struct connman_service *connman_service_create(void);
130 struct connman_service *connman_service_ref(struct connman_service *service); 128 struct connman_service *connman_service_ref(struct connman_service *service);
131 void connman_service_unref(struct connman_service *service); 129 void connman_service_unref(struct connman_service *service);
132 130
133 const char *connman_service_get_identifier(const struct connman_service * 131 const char *connman_service_get_identifier(const struct connman_service *
134 service); 132 service);
135 connman_bool_t connman_service_get_autoconnect(const struct connman_service * 133 connman_bool_t connman_service_get_autoconnect(const struct connman_service *
136 service); 134 service);
137 void connman_service_auto_connect(struct connman_service *); 135 void connman_service_auto_connect(struct connman_service *);
138 136
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 connman_service *service); 170 connman_service *service);
173 enum connman_service_security connman_service_get_security(const struct 171 enum connman_service_security connman_service_get_security(const struct
174 connman_service *service); 172 connman_service *service);
175 const char *connman_service_get_authmode(const struct connman_service *service); 173 const char *connman_service_get_authmode(const struct connman_service *service);
176 174
177 #ifdef __cplusplus 175 #ifdef __cplusplus
178 } 176 }
179 #endif 177 #endif
180 178
181 #endif /* __CONNMAN_SERVICE_H */ 179 #endif /* __CONNMAN_SERVICE_H */
OLDNEW
« no previous file with comments | « include/crypto.h ('k') | include/storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698