e_dbus/connman: remove Mode property in Service
[framework/uifw/edbus.git] / src / lib / connman / e_connman_service.c
1 #include "e_connman_private.h"
2
3 E_Connman_Element *
4 e_connman_service_get(const char *path)
5 {
6    E_Connman_Element *service;
7
8    EINA_SAFETY_ON_NULL_RETURN_VAL(path, NULL);
9
10    service = e_connman_element_get(path);
11    if (!service)
12       return NULL;
13
14    if (!e_connman_element_is_service(service))
15      {
16         WRN("path '%s' is not a service!", path);
17         return NULL;
18      }
19
20    return service;
21 }
22
23 /**
24  * Connect this service.
25  *
26  * Connect this service. It will attempt to connect
27  * WiFi, WiMAX or Bluetooth services.
28  *
29  * For Ethernet devices this method can only be used
30  * if it has previously been disconnected. Otherwise
31  * the plugging of a cable will trigger connecting
32  * automatically. If no cable is plugged in this method
33  * will fail.
34  *
35  * @param service path to call method on server.
36  * @param cb function to call when server replies or some error happens.
37  * @param data data to give to cb when it is called.
38  *
39  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
40  */
41 Eina_Bool
42 e_connman_service_connect(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
43 {
44    const char name[] = "Connect";
45
46    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
47    return e_connman_element_call_full
48              (service, name, NULL, &service->_pending.service_connect, cb, data);
49 }
50
51 /**
52  * Disconnect this service.
53  *
54  * Disconnect this service. If the service is not
55  * connected an error message will be generated.
56  *
57  * On Ethernet devices this will disconnect the IP
58  * details from the service. It will not magically
59  * unplug the cable. When no cable is plugged in this
60  * method will fail.
61  *
62  * This method can also be used to abort a previous
63  * connectiong attempt via the Connect method.
64  *
65  * @param service path to call method on server.
66  * @param cb function to call when server replies or some error happens.
67  * @param data data to give to cb when it is called.
68  *
69  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
70  */
71 Eina_Bool
72 e_connman_service_disconnect(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
73 {
74    const char name[] = "Disconnect";
75
76    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
77    return e_connman_element_call_full
78              (service, name, NULL, &service->_pending.service_disconnect, cb, data);
79 }
80
81 /**
82  * Remove this service.
83  *
84  * A successfully connected service with Favorite=true
85  * can be removed this way. If it is connected, it will
86  * be automatically disconnected first.
87  *
88  * If the service requires a passphrase it will be
89  * cleared and forgotten when removing.
90  *
91  * This is similar to setting the Favorite property
92  * to false, but that is currently not supported.
93  *
94  * In the case a connection attempt failed and the
95  * service is in the State=failure, this method can
96  * also be used to reset the service.
97  *
98  * Calling this method on Ethernet devices will cause
99  * an error message. It is not possible to remove these
100  * kind of devices.
101  *
102  * @param service path to call method on server.
103  * @param cb function to call when server replies or some error happens.
104  * @param data data to give to cb when it is called.
105  *
106  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
107  */
108 Eina_Bool
109 e_connman_service_remove(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
110 {
111    const char name[] = "Remove";
112
113    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
114    return e_connman_element_call_full
115              (service, name, NULL, &service->_pending.service_remove, cb, data);
116 }
117
118 /**
119  * Clears the value of the specified property.
120  *
121  *
122  * @param service path to call method on server.
123  * @param property to be cleared.
124  * @param cb function to call when server replies or some error happens.
125  * @param data data to give to cb when it is called.
126  *
127  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
128  */
129 Eina_Bool
130 e_connman_service_clear_property(E_Connman_Element *service, const char *property, E_DBus_Method_Return_Cb cb, const void *data)
131 {
132    const char name[] = "ClearProperty";
133
134    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
135    EINA_SAFETY_ON_NULL_RETURN_VAL(property, EINA_FALSE);
136    return e_connman_element_call_with_string
137              (service, name, property, NULL, &service->_pending.service_clear_property,
138              cb, data);
139 }
140
141 /**
142  * Move service before in favorites list.
143  *
144  * Call method MoveBefore(object service) at the given service on server.
145  *
146  * If a service has been used before, this allows a
147  * reorder of the favorite services.
148  *
149  * The target service object must be part of this
150  * profile. Moving between profiles is not supported.
151  *
152  * @param service path to call method on server.
153  * @param object_path object service.
154  * @param cb function to call when server replies or some error happens.
155  * @param data data to give to cb when it is called.
156  *
157  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
158  */
159 Eina_Bool
160 e_connman_service_move_before(E_Connman_Element *service, const char *object_path, E_DBus_Method_Return_Cb cb, const void *data)
161 {
162    const char name[] = "MoveBefore";
163
164    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
165    EINA_SAFETY_ON_NULL_RETURN_VAL(object_path, EINA_FALSE);
166    return e_connman_element_call_with_path
167              (service, name, object_path, NULL,
168              &service->_pending.service_move_before, cb, data);
169 }
170
171 /**
172  * Move service after in favorites list.
173  *
174  * Call method MoveAfter(object service) at the given service on server.
175  *
176  * If a service has been used before, this allows a
177  * reorder of the favorite services.
178  *
179  * The target service object must be part of this
180  * profile. Moving between profiles is not supported.
181  *
182  * @param service path to call method on server.
183  * @param cb function to call when server replies or some error happens.
184  * @param data data to give to cb when it is called.
185  *
186  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
187  */
188 Eina_Bool
189 e_connman_service_move_after(E_Connman_Element *service, const char *object_path, E_DBus_Method_Return_Cb cb, const void *data)
190 {
191    const char name[] = "MoveAfter";
192
193    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
194    EINA_SAFETY_ON_NULL_RETURN_VAL(object_path, EINA_FALSE);
195    return e_connman_element_call_with_path
196              (service, name, object_path, NULL,
197              &service->_pending.service_move_after, cb, data);
198 }
199
200 /**
201  * Get property "State" value.
202  *
203  * If this property isn't found then @c EINA_FALSE is returned.
204  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
205  * values shall be considered invalid.
206  *
207  * The service state information.
208  *
209  * Valid states are "idle", "failure", "association",
210  * "configuration", "ready", "login" and "online".
211  *
212  * @param service path to get property.
213  * @param state where to store the property value, must be a pointer
214  *        to string (const char **), it will not be allocated or
215  *        copied and references will be valid until element changes,
216  *        so copy it if you want to use it later.
217  *
218  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
219  */
220 Eina_Bool
221 e_connman_service_state_get(const E_Connman_Element *service, const char **state)
222 {
223    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
224    EINA_SAFETY_ON_NULL_RETURN_VAL(state, EINA_FALSE);
225    return e_connman_element_property_get_stringshared
226              (service, e_connman_prop_state, NULL, state);
227 }
228
229 /**
230  * Get property "Error" value.
231  *
232  * If this property isn't found then @c EINA_FALSE is returned.
233  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
234  * values shall be considered invalid.
235  *
236  * The service error status details.
237  *
238  * When error occur during connection or disconnection
239  * the detailed information are represented in this
240  * property to help the user interface to present the
241  * user with alternate options.
242  *
243  * This property is only valid when the service is in
244  * the "failure" state. Otherwise it might be empty or
245  * not present at all.
246  *
247  * Current defined error code is "dhcp-failed".
248  *
249  * @param service path to get property.
250  * @param error where to store the property value, must be a pointer
251  *        to string (const char **), it will not be allocated or
252  *        copied and references will be valid until element changes,
253  *        so copy it if you want to use it later.
254  *
255  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
256  */
257 Eina_Bool
258 e_connman_service_error_get(const E_Connman_Element *service, const char **error)
259 {
260    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
261    EINA_SAFETY_ON_NULL_RETURN_VAL(error, EINA_FALSE);
262    return e_connman_element_property_get_stringshared
263              (service, e_connman_prop_error, NULL, error);
264 }
265
266 /**
267  * Get property "Name" value.
268  *
269  * If this property isn't found then @c EINA_FALSE is returned.
270  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
271  * values shall be considered invalid.
272  *
273  * The service name (for example "Wireless" etc.)
274  *
275  * This name can be used for directly displaying it in
276  * the application. It has pure informational purpose.
277  *
278  * For Ethernet devices and hidden WiFi networks it is
279  * not guaranteed that this property is present.
280  *
281  * @param service path to get property.
282  * @param name where to store the property value, must be a pointer
283  *        to string (const char **), it will not be allocated or
284  *        copied and references will be valid until element changes,
285  *        so copy it if you want to use it later.
286  *
287  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
288  */
289 Eina_Bool
290 e_connman_service_name_get(const E_Connman_Element *service, const char **name)
291 {
292    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
293    EINA_SAFETY_ON_NULL_RETURN_VAL(name, EINA_FALSE);
294    return e_connman_element_property_get_stringshared
295              (service, e_connman_prop_name, NULL, name);
296 }
297
298 /**
299  * Get property "Type" value.
300  *
301  * If this property isn't found then @c EINA_FALSE is returned.
302  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
303  * values shall be considered invalid.
304  *
305  * The service type (for example "ethernet", "wifi" etc.)
306  *
307  * This information should only be used to determine
308  * advanced properties or showing the correct icon
309  * to the user.
310  *
311  * @param service path to get property.
312  * @param type where to store the property value, must be a pointer
313  *        to string (const char **), it will not be allocated or
314  *        copied and references will be valid until element changes,
315  *        so copy it if you want to use it later.
316  *
317  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
318  */
319 Eina_Bool
320 e_connman_service_type_get(const E_Connman_Element *service, const char **type)
321 {
322    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
323    EINA_SAFETY_ON_NULL_RETURN_VAL(type, EINA_FALSE);
324    return e_connman_element_property_get_stringshared
325              (service, e_connman_prop_type, NULL, type);
326 }
327
328 /**
329  * Get property "Security" value.
330  *
331  * If this property isn't found then @c EINA_FALSE is returned.
332  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
333  * values shall be considered invalid.
334  *
335  * If the service type is WiFi, then this property is
336  * present and contains the list of security method or key
337  * management setting.
338  *
339  * Possible values are "none", "wep", "wpa", "rsn", "psk", "ieee8021x" and "wps"
340  *
341  * This property might be only present for WiFi
342  * services.
343  *
344  * @param service path to get property.
345  * @param security where to store the property value, must be a pointer
346  *        to E_Connman_Array, it will not be allocated or
347  *        copied and references will be valid until element changes,
348  *        so copy it if you want to use it later.
349  *
350  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
351  */
352 Eina_Bool
353 e_connman_service_security_get(const E_Connman_Element *service, const E_Connman_Array **security)
354 {
355    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
356    EINA_SAFETY_ON_NULL_RETURN_VAL(security, EINA_FALSE);
357    return e_connman_element_property_get_stringshared
358              (service, e_connman_prop_security, NULL, security);
359 }
360
361 /**
362  * Get property "Passphrase" value.
363  *
364  * If this property isn't found then @c EINA_FALSE is returned.
365  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
366  * values shall be considered invalid.
367  *
368  * If the service type is WiFi, then this property
369  * can be used to store a passphrase.
370  *
371  * No PropertyChanged signals will be send for this
372  * property. The PassphraseRequired property should
373  * be monitored instead.
374  *
375  * This property might also not always be included
376  * since it is protected by a different security policy.
377  *
378  * @param service path to get property.
379  * @param passphrase where to store the property value, must be a pointer
380  *        to string (const char **), it will not be allocated or
381  *        copied and references will be valid until element changes,
382  *        so copy it if you want to use it later.
383  *
384  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
385  * @see e_connman_service_passphrase_set()
386  */
387 Eina_Bool
388 e_connman_service_passphrase_get(const E_Connman_Element *service, const char **passphrase)
389 {
390    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
391    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase, EINA_FALSE);
392    return e_connman_element_property_get_stringshared
393              (service, e_connman_prop_passphrase, NULL, passphrase);
394 }
395
396 /**
397  * Set property "Passphrase" value.
398  *
399  * If this property isn't found then @c EINA_FALSE is returned.
400  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
401  * values shall be considered invalid.
402  *
403  * If the service type is WiFi, then this property
404  * can be used to store a passphrase.
405  *
406  * No PropertyChanged signals will be send for this
407  * property. The PassphraseRequired property should
408  * be monitored instead.
409  *
410  * This property might also not always be included
411  * since it is protected by a different security policy.
412  *
413  * @param service path to get property.
414  * @param passphrase value to set.
415  * @param cb function to call when server replies or some error happens.
416  * @param data data to give to cb when it is called.
417  *
418  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
419  * @see e_connman_service_passphrase_get()
420  */
421 Eina_Bool
422 e_connman_service_passphrase_set(E_Connman_Element *service, const char *passphrase, E_DBus_Method_Return_Cb cb, const void *data)
423 {
424    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
425    return e_connman_element_property_set_full
426              (service, e_connman_prop_passphrase, DBUS_TYPE_STRING,
427              passphrase, cb, data);
428 }
429
430 /**
431  * Get property "PassphraseRequired" value.
432  *
433  * If this property isn't found then @c EINA_FALSE is returned.
434  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
435  * values shall be considered invalid.
436  *
437  * If the service type is WiFi, then this property
438  * indicates if a passphrase is required.
439  *
440  * If a passphrase has been set already or if no
441  * passphrase is needed, then this property will
442  * be set to false.
443  *
444  * @param service path to get property.
445  * @param passphrase_required where to store the property value, must be a
446  *        pointer to Eina_Bool (Eina_Bool *).
447  *
448  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
449  */
450 Eina_Bool
451 e_connman_service_passphrase_required_get(const E_Connman_Element *service, Eina_Bool *passphrase_required)
452 {
453    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
454    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase_required, EINA_FALSE);
455    return e_connman_element_property_get_stringshared
456              (service, e_connman_prop_passphrase_required, NULL, passphrase_required);
457 }
458
459 /**
460  * Get property "LoginRequired" value.
461  *
462  * If this property isn't found then @c EINA_FALSE is returned.
463  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
464  * values shall be considered invalid.
465  *
466  * Indicates that a manual configuration must be done to login the
467  * user, likely access an website using a browser.
468  *
469  * If a login has been set already or if no
470  * login is needed, then this property will
471  * be set to false.
472  *
473  * @param service path to get property.
474  * @param login_required where to store the property value, must be a
475  *        pointer to Eina_Bool (Eina_Bool *).
476  *
477  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
478  *
479  * @since 1.1.0
480  */
481 Eina_Bool
482 e_connman_service_login_required_get(const E_Connman_Element *service, Eina_Bool *login_required)
483 {
484    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
485    EINA_SAFETY_ON_NULL_RETURN_VAL(login_required, EINA_FALSE);
486    return e_connman_element_property_get_stringshared
487              (service, e_connman_prop_login_required, NULL, login_required);
488 }
489
490 /**
491  * Get property "Strength" value.
492  *
493  * If this property isn't found then @c EINA_FALSE is returned.
494  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
495  * values shall be considered invalid.
496  *
497  * Indicates the signal strength of the service. This
498  * is a normalized value between 0 and 100.
499  *
500  * This property will not be present for Ethernet
501  * devices.
502  *
503  * @param service path to get property.
504  * @param strength where to store the property value, must be a pointer
505  *        to byte (unsigned char*).
506  *
507  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
508  */
509 Eina_Bool
510 e_connman_service_strength_get(const E_Connman_Element *service, unsigned char *strength)
511 {
512    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
513    EINA_SAFETY_ON_NULL_RETURN_VAL(strength, EINA_FALSE);
514    return e_connman_element_property_get_stringshared
515              (service, e_connman_prop_strength, NULL, strength);
516 }
517
518 /**
519  * Get property "Favorite" value.
520  *
521  * If this property isn't found then @c EINA_FALSE is returned.
522  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
523  * values shall be considered invalid.
524  *
525  * Will be true if a cable is plugged in or the user
526  * selected and successfully connected to this service.
527  *
528  * This value is automatically changed and to revert
529  * it back to false the Remove() method needs to be
530  * used.
531  *
532  * @param service path to get property.
533  * @param favorite where to store the property value, must be a
534  *        pointer to Eina_Bool (Eina_Bool *).
535  *
536  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
537  */
538 Eina_Bool
539 e_connman_service_favorite_get(const E_Connman_Element *service, Eina_Bool *favorite)
540 {
541    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
542    EINA_SAFETY_ON_NULL_RETURN_VAL(favorite, EINA_FALSE);
543    return e_connman_element_property_get_stringshared
544              (service, e_connman_prop_favorite, NULL, favorite);
545 }
546
547 /**
548  * Get property "Immutable" value.
549  *
550  * This value will be set to true if the service is configured
551  * externally via a configuration file.
552  *
553  * The only valid operation are e_connman_service_connect() and
554  * e_connman_service_disconnect(). The e_connman_service_remove()
555  * method will result in an error.
556
557  * @param service path to get property.
558  * @param immutable where to store the property value, must be a
559  *        pointer to Eina_Bool (Eina_Bool *).
560  *
561  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
562  */
563 Eina_Bool
564 e_connman_service_immutable_get(const E_Connman_Element *service, Eina_Bool *immutable)
565 {
566    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
567    EINA_SAFETY_ON_NULL_RETURN_VAL(immutable, EINA_FALSE);
568    return e_connman_element_property_get_stringshared
569              (service, e_connman_prop_immutable, NULL, immutable);
570 }
571
572 /**
573  * Get property "AutoConnect" value.
574  *
575  * If this property isn't found then @c EINA_FALSE is returned.
576  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
577  * values shall be considered invalid.
578  *
579  * If set to true, this service will auto-connect
580  * when not other connection is available.
581  *
582  * For favorite services it is possible to change
583  * this value to prevent or permit automatic
584  * connection attempts.
585  *
586  * @param service path to get property.
587  * @param auto_connect where to store the property value, must be a
588  *        pointer to Eina_Bool (Eina_Bool *).
589  *
590  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
591  * @see e_connman_service_auto_connect_set()
592  */
593 Eina_Bool
594 e_connman_service_auto_connect_get(const E_Connman_Element *service, Eina_Bool *auto_connect)
595 {
596    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
597    EINA_SAFETY_ON_NULL_RETURN_VAL(auto_connect, EINA_FALSE);
598    return e_connman_element_property_get_stringshared
599              (service, e_connman_prop_auto_connect, NULL, auto_connect);
600 }
601
602 /**
603  * Set property "AutoConnect" value.
604  *
605  * If this property isn't found then @c EINA_FALSE is returned.
606  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
607  * values shall be considered invalid.
608  *
609  * If set to true, this service will auto-connect
610  * when not other connection is available.
611  *
612  * For favorite services it is possible to change
613  * this value to prevent or permit automatic
614  * connection attempts.
615  *
616  * @param service path to get property.
617  * @param service_favorite where to store the property value, must be a
618  *        pointer to Eina_Bool (Eina_Bool *).
619  *
620  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
621  * @see e_connman_service_auto_connect_get()
622  */
623 Eina_Bool
624 e_connman_service_auto_connect_set(E_Connman_Element *service, Eina_Bool auto_connect, E_DBus_Method_Return_Cb cb, const void *data)
625 {
626    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
627    return e_connman_element_property_set_full
628              (service, e_connman_prop_auto_connect, DBUS_TYPE_BOOLEAN, &auto_connect, cb, data);
629 }
630
631 /**
632  * Get property "SetupRequired" value.
633  *
634  * If this property isn't found then @c EINA_FALSE is returned.
635  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
636  * values shall be considered invalid.
637  *
638  * If the service is Cellular, then this property
639  * indicates that some extra setup steps are required.
640  *
641  * In most cases it is required to fill in the APN
642  * details.
643  *
644  * @param service path to get property.
645  * @param setup_required where to store the property value, must be a
646  *        pointer to Eina_Bool (Eina_Bool *).
647  *
648  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
649  */
650 Eina_Bool
651 e_connman_service_setup_required_get(const E_Connman_Element *service, Eina_Bool *setup_required)
652 {
653    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
654    EINA_SAFETY_ON_NULL_RETURN_VAL(setup_required, EINA_FALSE);
655    return e_connman_element_property_get_stringshared
656              (service, e_connman_prop_setup_required, NULL, setup_required);
657 }
658
659 /**
660  * Get property "APN" value.
661  *
662  * If this property isn't found then @c EINA_FALSE is returned.
663  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
664  * values shall be considered invalid.
665  *
666  * If the service is Cellular, then this property
667  * contains the APN details.
668  *
669  * The APN is network provider specific and even
670  * sometimes data plan specific. Possible examples
671  * are "isp.cingular" or "internet.t-mobile".
672  *
673  * This property might also not always be included
674  * since it is protected by a different security policy.
675  *
676  * @param service path to get property.
677  * @param apn where to store the property value, must be a pointer
678  *        to string (const char **), it will not be allocated or
679  *        copied and references will be valid until element changes,
680  *        so copy it if you want to use it later.
681  *
682  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
683  * @see e_connman_service_apn_set()
684  */
685 Eina_Bool
686 e_connman_service_apn_get(const E_Connman_Element *service, const char **apn)
687 {
688    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
689    EINA_SAFETY_ON_NULL_RETURN_VAL(apn, EINA_FALSE);
690    return e_connman_element_property_get_stringshared
691              (service, e_connman_prop_apn, NULL, apn);
692 }
693
694 /**
695  * Set property "APN" value.
696  *
697  * If this property isn't found then @c EINA_FALSE is returned.
698  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
699  * values shall be considered invalid.
700  *
701  * If the service is Cellular, then this property
702  * contains the APN details.
703  *
704  * The APN is network provider specific and even
705  * sometimes data plan specific. Possible examples
706  * are "isp.cingular" or "internet.t-mobile".
707  *
708  * This property might also not always be included
709  * since it is protected by a different security policy.
710  *
711  * @param service path to get property.
712  * @param passphrase value to set.
713  * @param cb function to call when server replies or some error happens.
714  * @param data data to give to cb when it is called.
715  *
716  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
717  * @see e_connman_service_apn_get()
718  */
719 Eina_Bool
720 e_connman_service_apn_set(E_Connman_Element *service, const char *apn, E_DBus_Method_Return_Cb cb, const void *data)
721 {
722    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
723    return e_connman_element_property_set_full
724              (service, e_connman_prop_apn, DBUS_TYPE_STRING,
725              apn, cb, data);
726 }
727
728 /**
729  * Get property "MCC" value.
730  *
731  * If this property isn't found then @c EINA_FALSE is returned.
732  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
733  * values shall be considered invalid.
734  *
735  * If the service is Cellular, then this property
736  * contains the Mobile Country Code.
737  *
738  * @param service path to get property.
739  * @param mcc where to store the property value, must be a pointer
740  *        to string (const char **), it will not be allocated or
741  *        copied and references will be valid until element changes,
742  *        so copy it if you want to use it later.
743  *
744  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
745  */
746 Eina_Bool
747 e_connman_service_mcc_get(const E_Connman_Element *service, const char **mcc)
748 {
749    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
750    EINA_SAFETY_ON_NULL_RETURN_VAL(mcc, EINA_FALSE);
751    return e_connman_element_property_get_stringshared
752              (service, e_connman_prop_mcc, NULL, mcc);
753 }
754
755 /**
756  * Get property "MNC" value.
757  *
758  * If this property isn't found then @c EINA_FALSE is returned.
759  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
760  * values shall be considered invalid.
761  *
762  * If the service is Cellular, then this property
763  * contains the Mobile Network Code.
764  *
765  * @param service path to get property.
766  * @param mnc where to store the property value, must be a pointer
767  *        to string (const char **), it will not be allocated or
768  *        copied and references will be valid until element changes,
769  *        so copy it if you want to use it later.
770  *
771  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
772  */
773 Eina_Bool
774 e_connman_service_mnc_get(const E_Connman_Element *service, const char **mnc)
775 {
776    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
777    EINA_SAFETY_ON_NULL_RETURN_VAL(mnc, EINA_FALSE);
778    return e_connman_element_property_get_stringshared
779              (service, e_connman_prop_mnc, NULL, mnc);
780 }
781
782 /**
783  * Get property "Roaming" value.
784  *
785  * If this property isn't found then @c EINA_FALSE is returned.
786  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
787  * values shall be considered invalid.
788  *
789  * This property indicates if this service is roaming.
790  *
791  * In the case of Cellular services this normally
792  * indicates connections to a foreign provider when
793  * traveling abroad.
794  *
795  * @param service path to get property.
796  * @param roaming where to store the property value, must be a
797  *        pointer to Eina_Bool (Eina_Bool *).
798  *
799  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
800  */
801 Eina_Bool
802 e_connman_service_roaming_get(const E_Connman_Element *service, Eina_Bool *roaming)
803 {
804    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
805    EINA_SAFETY_ON_NULL_RETURN_VAL(roaming, EINA_FALSE);
806    return e_connman_element_property_get_stringshared
807              (service, e_connman_prop_roaming, NULL, roaming);
808 }
809
810 /**
811  * Get property "IPv4.Method" value.
812  *
813  * If this property isn't found then @c EINA_FALSE is returned.
814  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
815  * values shall be considered invalid.
816  *
817  * The IPv4 method in use. Possible values here are "dhcp" and
818  * "static".
819  *
820  * @param service path to get property.
821  * @param method where to store the property value, must be a pointer
822  *        to string (const char **), it will not be allocated or
823  *        copied and references will be valid until element changes,
824  *        so copy it if you want to use it later.
825  *
826  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
827  */
828 Eina_Bool
829 e_connman_service_ipv4_method_get(const E_Connman_Element *service, const char **method)
830 {
831    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
832    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
833    return e_connman_element_property_dict_get_stringshared
834              (service, e_connman_prop_ipv4, e_connman_prop_method, NULL, method);
835 }
836
837 /**
838  * Get property "IPv4.Address" value.
839  *
840  * If this property isn't found then @c EINA_FALSE is returned.
841  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
842  * values shall be considered invalid.
843  *
844  * The current IPv4 address.
845  *
846  * @param service path to get property.
847  * @param address where to store the property value, must be a pointer
848  *        to string (const char **), it will not be allocated or
849  *        copied and references will be valid until element changes,
850  *        so copy it if you want to use it later.
851  *
852  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
853  */
854 Eina_Bool
855 e_connman_service_ipv4_address_get(const E_Connman_Element *service, const char **address)
856 {
857    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
858    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
859    return e_connman_element_property_dict_get_stringshared
860              (service, e_connman_prop_ipv4, e_connman_prop_address, NULL, address);
861 }
862
863 /**
864  * Get property "IPv4.Gateway" value.
865  *
866  * If this property isn't found then @c EINA_FALSE is returned.
867  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
868  * values shall be considered invalid.
869  *
870  * The current IPv4 gateway.
871  *
872  * @param service path to get property.
873  * @param gateway where to store the property value, must be a pointer
874  *        to string (const char **), it will not be allocated or
875  *        copied and references will be valid until element changes,
876  *        so copy it if you want to use it later.
877  *
878  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
879  */
880 Eina_Bool
881 e_connman_service_ipv4_gateway_get(const E_Connman_Element *service, const char **gateway)
882 {
883    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
884    EINA_SAFETY_ON_NULL_RETURN_VAL(gateway, EINA_FALSE);
885    return e_connman_element_property_dict_get_stringshared
886              (service, e_connman_prop_ipv4, e_connman_prop_gateway, NULL, gateway);
887 }
888
889 /**
890  * Get property "IPv4.Netmask" value.
891  *
892  * If this property isn't found then @c EINA_FALSE is returned.
893  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
894  * values shall be considered invalid.
895  *
896  * The current IPv4 netmask.
897  *
898  * @param service path to get property.
899  * @param netmask where to store the property value, must be a pointer
900  *        to string (const char **), it will not be allocated or
901  *        copied and references will be valid until element changes,
902  *        so copy it if you want to use it later.
903  *
904  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
905  */
906 Eina_Bool
907 e_connman_service_ipv4_netmask_get(const E_Connman_Element *service, const char **netmask)
908 {
909    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
910    EINA_SAFETY_ON_NULL_RETURN_VAL(netmask, EINA_FALSE);
911    return e_connman_element_property_dict_get_stringshared
912              (service, e_connman_prop_ipv4, e_connman_prop_netmask, NULL, netmask);
913 }
914
915 /**
916  * Get property "IPv4.Configuration.Method" value.
917  *
918  * Unlike IPv4.Method, this is the user-set value, rather than the
919  * actual value.
920  *
921  * If this property isn't found then @c EINA_FALSE is returned.
922  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
923  * values shall be considered invalid.
924  *
925  * The IPv4 configured method. Possible values here are "dhcp" and
926  * "static".
927  *
928  * @param service path to get property.
929  * @param method where to store the property value, must be a pointer
930  *        to string (const char **), it will not be allocated or
931  *        copied and references will be valid until element changes,
932  *        so copy it if you want to use it later.
933  *
934  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
935  */
936 Eina_Bool
937 e_connman_service_ipv4_configuration_method_get(const E_Connman_Element *service, const char **method)
938 {
939    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
940    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
941    return e_connman_element_property_dict_get_stringshared
942              (service, e_connman_prop_ipv4_configuration, e_connman_prop_method,
943              NULL, method);
944 }
945
946 /**
947  * Get property "IPv4.Configuration.Address" value.
948  *
949  * Unlike IPv4.Address, this is the user-set value, rather than the
950  * actual value.
951  *
952  * If this property isn't found then @c EINA_FALSE is returned.
953  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
954  * values shall be considered invalid.
955  *
956  * The current configured IPv4 address.
957  *
958  * @param service path to get property.
959  * @param address where to store the property value, must be a pointer
960  *        to string (const char **), it will not be allocated or
961  *        copied and references will be valid until element changes,
962  *        so copy it if you want to use it later.
963  *
964  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
965  */
966 Eina_Bool
967 e_connman_service_ipv4_configuration_address_get(const E_Connman_Element *service, const char **address)
968 {
969    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
970    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
971    return e_connman_element_property_dict_get_stringshared
972              (service, e_connman_prop_ipv4_configuration, e_connman_prop_address,
973              NULL, address);
974 }
975
976 /**
977  * Get property "IPv4.Configuration.Gateway" value.
978  *
979  * Unlike IPv4.Gateway, this is the user-set value, rather than the
980  * actual value.
981  *
982  * If this property isn't found then @c EINA_FALSE is returned.
983  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
984  * values shall be considered invalid.
985  *
986  * The current configured IPv4 gateway.
987  *
988  * @param service path to get property.
989  * @param gateway where to store the property value, must be a pointer
990  *        to string (const char **), it will not be allocated or
991  *        copied and references will be valid until element changes,
992  *        so copy it if you want to use it later.
993  *
994  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
995  */
996 Eina_Bool
997 e_connman_service_ipv4_configuration_gateway_get(const E_Connman_Element *service, const char **gateway)
998 {
999    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1000    EINA_SAFETY_ON_NULL_RETURN_VAL(gateway, EINA_FALSE);
1001    return e_connman_element_property_dict_get_stringshared
1002              (service, e_connman_prop_ipv4_configuration, e_connman_prop_gateway,
1003              NULL, gateway);
1004 }
1005
1006 /**
1007  * Get property "IPv4.Configuration.Netmask" value.
1008  *
1009  * Unlike IPv4.Netmask, this is the user-set value, rather than the
1010  * actual value.
1011  *
1012  * If this property isn't found then @c EINA_FALSE is returned.
1013  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1014  * values shall be considered invalid.
1015  *
1016  * The current configured IPv4 netmask.
1017  *
1018  * @param service path to get property.
1019  * @param netmask where to store the property value, must be a pointer
1020  *        to string (const char **), it will not be allocated or
1021  *        copied and references will be valid until element changes,
1022  *        so copy it if you want to use it later.
1023  *
1024  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1025  */
1026 Eina_Bool
1027 e_connman_service_ipv4_configuration_netmask_get(const E_Connman_Element *service, const char **netmask)
1028 {
1029    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1030    EINA_SAFETY_ON_NULL_RETURN_VAL(netmask, EINA_FALSE);
1031    return e_connman_element_property_dict_get_stringshared
1032              (service, e_connman_prop_ipv4_configuration, e_connman_prop_netmask,
1033              NULL, netmask);
1034 }
1035
1036 /**
1037  * Set IPv4 to connect automatically using DHCP.
1038  *
1039  * @param service path to set.
1040  * @param cb function to call when server replies or some error happens.
1041  * @param data data to give to cb when it is called.
1042  *
1043  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1044  */
1045 Eina_Bool
1046 e_connman_service_ipv4_configure_dhcp(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
1047 {
1048    const char method[] = "dhcp";
1049    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1050    return e_connman_element_property_dict_set_full
1051              (service, e_connman_prop_ipv4_configuration, e_connman_prop_method,
1052              DBUS_TYPE_STRING, method, cb, data);
1053 }
1054
1055 /**
1056  * Set IPv4 to connect using manually set parameters.
1057  *
1058  * @param service path to set.
1059  * @param address IPv4 address.
1060  * @param netmask IPv4 netmask, or @c NULL for "/32".
1061  * @param gateway IPv4 gateway address.
1062  * @param cb function to call when server replies or some error happens.
1063  * @param data data to give to cb when it is called.
1064  *
1065  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1066  */
1067 Eina_Bool
1068 e_connman_service_ipv4_configure_manual(E_Connman_Element *service, const char *address, const char *netmask, const char *gateway, E_DBus_Method_Return_Cb cb, const void *data)
1069 {
1070    const char name[] = "SetProperty";
1071    const char *method = "manual"; /* not method[] as gcc screws it with dbus */
1072    DBusMessage *msg;
1073    DBusMessageIter itr, variant, dict, entry;
1074
1075    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1076    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
1077
1078    msg = dbus_message_new_method_call
1079          (e_connman_system_bus_name_get(), service->path, service->interface, name);
1080
1081    if (!msg)
1082       return 0;
1083
1084    dbus_message_iter_init_append(msg, &itr);
1085    dbus_message_iter_append_basic
1086       (&itr, DBUS_TYPE_STRING, &e_connman_prop_ipv4_configuration);
1087
1088    dbus_message_iter_open_container
1089       (&itr, DBUS_TYPE_VARIANT,
1090       (DBUS_TYPE_ARRAY_AS_STRING
1091        DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1092        DBUS_TYPE_STRING_AS_STRING
1093        DBUS_TYPE_STRING_AS_STRING
1094        DBUS_DICT_ENTRY_END_CHAR_AS_STRING),
1095       &variant);
1096    dbus_message_iter_open_container
1097       (&variant, DBUS_TYPE_ARRAY,
1098       (DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1099        DBUS_TYPE_STRING_AS_STRING
1100        DBUS_TYPE_STRING_AS_STRING
1101        DBUS_DICT_ENTRY_END_CHAR_AS_STRING),
1102       &dict);
1103
1104    dbus_message_iter_open_container(&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1105    dbus_message_iter_append_basic
1106       (&entry, DBUS_TYPE_STRING, &e_connman_prop_method);
1107    dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &method);
1108    dbus_message_iter_close_container(&dict, &entry);
1109
1110    dbus_message_iter_open_container(&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1111    dbus_message_iter_append_basic
1112       (&entry, DBUS_TYPE_STRING, &e_connman_prop_address);
1113    dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &address);
1114    dbus_message_iter_close_container(&dict, &entry);
1115
1116    if (netmask)
1117      {
1118         dbus_message_iter_open_container
1119            (&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1120         dbus_message_iter_append_basic
1121            (&entry, DBUS_TYPE_STRING, &e_connman_prop_netmask);
1122         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &netmask);
1123         dbus_message_iter_close_container(&dict, &entry);
1124      }
1125
1126    if (gateway)
1127      {
1128         dbus_message_iter_open_container
1129            (&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1130         dbus_message_iter_append_basic
1131            (&entry, DBUS_TYPE_STRING, &e_connman_prop_gateway);
1132         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &gateway);
1133         dbus_message_iter_close_container(&dict, &entry);
1134      }
1135
1136    dbus_message_iter_close_container(&variant, &dict);
1137    dbus_message_iter_close_container(&itr, &variant);
1138
1139    return e_connman_element_message_send
1140              (service, name, NULL, msg, &service->_pending.property_set, cb, data);
1141 }
1142
1143 /**
1144  * Get property "Ethernet.Method" value.
1145  *
1146  * If this property isn't found then @c EINA_FALSE is returned.
1147  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1148  * values shall be considered invalid.
1149  *
1150  * The Ethernet configuration method. Possible values here "auto" and "manual".
1151  *
1152  * @param service path to get property.
1153  * @param method where to store the property value, must be a pointer
1154  *        to string (const char **), it will not be allocated or
1155  *        copied and references will be valid until element changes,
1156  *        so copy it if you want to use it later.
1157  *
1158  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1159  */
1160 Eina_Bool
1161 e_connman_service_ethernet_method_get(const E_Connman_Element *service, const char **method)
1162 {
1163    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1164    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
1165    return e_connman_element_property_dict_get_stringshared
1166              (service, e_connman_prop_ethernet, e_connman_prop_method, NULL, method);
1167 }
1168
1169 /**
1170  * Get property "Ethernet.Interface" value.
1171  *
1172  * If this property isn't found then @c EINA_FALSE is returned.
1173  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1174  * values shall be considered invalid.
1175  *
1176  * Interface name (for example eth0).
1177  *
1178  * @param service path to get property.
1179  * @param iface where to store the property value, must be a pointer
1180  *        to string (const char **), it will not be allocated or
1181  *        copied and references will be valid until element changes,
1182  *        so copy it if you want to use it later.
1183  *
1184  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1185  */
1186 Eina_Bool
1187 e_connman_service_ethernet_interface_get(const E_Connman_Element *service, const char **iface)
1188 {
1189    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1190    EINA_SAFETY_ON_NULL_RETURN_VAL(iface, EINA_FALSE);
1191    return e_connman_element_property_dict_get_stringshared
1192              (service, e_connman_prop_ethernet, e_connman_prop_interface, NULL, iface);
1193 }
1194
1195 /**
1196  * Get property "Ethernet.Speed" value.
1197  *
1198  * If this property isn't found then @c EINA_FALSE is returned.
1199  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1200  * values shall be considered invalid.
1201  *
1202  * Selected speed of the line. This information might not always be available.
1203  *
1204  * @param service path to get property.
1205  * @param speed where to store the property value.
1206  *
1207  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1208  */
1209 Eina_Bool
1210 e_connman_service_ethernet_speed_get(const E_Connman_Element *service, unsigned short *speed)
1211 {
1212    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1213    EINA_SAFETY_ON_NULL_RETURN_VAL(speed, EINA_FALSE);
1214    return e_connman_element_property_dict_get_stringshared
1215              (service, e_connman_prop_ethernet, e_connman_prop_speed, NULL, speed);
1216 }
1217
1218 /**
1219  * Get property "Ethernet.Address" value.
1220  *
1221  * If this property isn't found then @c EINA_FALSE is returned.
1222  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1223  * values shall be considered invalid.
1224  *
1225  * The current configured Ethernet address (mac-address).
1226  *
1227  * @param service path to get property.
1228  * @param address where to store the property value, must be a pointer
1229  *        to string (const char **), it will not be allocated or
1230  *        copied and references will be valid until element changes,
1231  *        so copy it if you want to use it later.
1232  *
1233  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1234  */
1235 Eina_Bool
1236 e_connman_service_ethernet_address_get(const E_Connman_Element *service, const char **address)
1237 {
1238    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1239    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
1240    return e_connman_element_property_dict_get_stringshared
1241              (service, e_connman_prop_ethernet, e_connman_prop_address, NULL, address);
1242 }
1243
1244 /**
1245  * Get property "Ethernet.Duplex" value.
1246  *
1247  * If this property isn't found then @c EINA_FALSE is returned.
1248  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1249  * values shall be considered invalid.
1250  *
1251  * Selected duplex settings of the line. Possible values are "half" and "full".
1252  * This information might not always be available.
1253  *
1254  * @param service path to get property.
1255  * @param duplex where to store the property value, must be a pointer
1256  *        to string (const char **), it will not be allocated or
1257  *        copied and references will be valid until element changes,
1258  *        so copy it if you want to use it later.
1259  *
1260  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1261  */
1262 Eina_Bool
1263 e_connman_service_ethernet_duplex_get(const E_Connman_Element *service, const char **duplex)
1264 {
1265    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1266    EINA_SAFETY_ON_NULL_RETURN_VAL(duplex, EINA_FALSE);
1267    return e_connman_element_property_dict_get_stringshared
1268              (service, e_connman_prop_ethernet, e_connman_prop_duplex, NULL, duplex);
1269 }
1270
1271 /**
1272  * Get property "Ethernet.MTU" value.
1273  *
1274  * If this property isn't found then @c EINA_FALSE is returned.
1275  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1276  * values shall be considered invalid.
1277  *
1278  * The current configured Ethernet MTU.
1279  *
1280  * @param service path to get property.
1281  * @param gateway where to store the property value, must be a pointer
1282  *        to string (const char **), it will not be allocated or
1283  *        copied and references will be valid until element changes,
1284  *        so copy it if you want to use it later.
1285  *
1286  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1287  */
1288 Eina_Bool
1289 e_connman_service_ethernet_mtu_get(const E_Connman_Element *service, unsigned short *mtu)
1290 {
1291    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1292    EINA_SAFETY_ON_NULL_RETURN_VAL(mtu, EINA_FALSE);
1293    return e_connman_element_property_dict_get_stringshared
1294              (service, e_connman_prop_ethernet, e_connman_prop_mtu, NULL, mtu);
1295 }