bool -> Eina_Bool
[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 "Mode" 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 or Cellular, then this
336  * property is present and contains the mode of the
337  * network.
338  *
339  * For WiFi services the possible values are "managed"
340  * and "adhoc". For Cellular services it describes the
341  * network technology. Possible values are "gprs", "edge"
342  * and "umts".
343  *
344  * This property might be only present for WiFi and
345  * Cellular services.
346  *
347  * @param service path to get property.
348  * @param mode where to store the property value, must be a pointer
349  *        to string (const char **), it will not be allocated or
350  *        copied and references will be valid until element changes,
351  *        so copy it if you want to use it later.
352  *
353  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
354  */
355 Eina_Bool
356 e_connman_service_mode_get(const E_Connman_Element *service, const char **mode)
357 {
358    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
359    EINA_SAFETY_ON_NULL_RETURN_VAL(mode, EINA_FALSE);
360    return e_connman_element_property_get_stringshared
361              (service, e_connman_prop_mode, NULL, mode);
362 }
363
364 /**
365  * Get property "Security" value.
366  *
367  * If this property isn't found then @c EINA_FALSE is returned.
368  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
369  * values shall be considered invalid.
370  *
371  * If the service type is WiFi, then this property is
372  * present and contains the security method or key
373  * management setting.
374  *
375  * Possible values are "none", "wep", "wpa" and "rsn".
376  *
377  * This property might be only present for WiFi
378  * services.
379  *
380  * @param service path to get property.
381  * @param security where to store the property value, must be a pointer
382  *        to string (const char **), it will not be allocated or
383  *        copied and references will be valid until element changes,
384  *        so copy it if you want to use it later.
385  *
386  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
387  */
388 Eina_Bool
389 e_connman_service_security_get(const E_Connman_Element *service, const char **security)
390 {
391    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
392    EINA_SAFETY_ON_NULL_RETURN_VAL(security, EINA_FALSE);
393    return e_connman_element_property_get_stringshared
394              (service, e_connman_prop_security, NULL, security);
395 }
396
397 /**
398  * Get property "Passphrase" value.
399  *
400  * If this property isn't found then @c EINA_FALSE is returned.
401  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
402  * values shall be considered invalid.
403  *
404  * If the service type is WiFi, then this property
405  * can be used to store a passphrase.
406  *
407  * No PropertyChanged signals will be send for this
408  * property. The PassphraseRequired property should
409  * be monitored instead.
410  *
411  * This property might also not always be included
412  * since it is protected by a different security policy.
413  *
414  * @param service path to get property.
415  * @param passphrase where to store the property value, must be a pointer
416  *        to string (const char **), it will not be allocated or
417  *        copied and references will be valid until element changes,
418  *        so copy it if you want to use it later.
419  *
420  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
421  * @see e_connman_service_passphrase_set()
422  */
423 Eina_Bool
424 e_connman_service_passphrase_get(const E_Connman_Element *service, const char **passphrase)
425 {
426    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
427    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase, EINA_FALSE);
428    return e_connman_element_property_get_stringshared
429              (service, e_connman_prop_passphrase, NULL, passphrase);
430 }
431
432 /**
433  * Set property "Passphrase" value.
434  *
435  * If this property isn't found then @c EINA_FALSE is returned.
436  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
437  * values shall be considered invalid.
438  *
439  * If the service type is WiFi, then this property
440  * can be used to store a passphrase.
441  *
442  * No PropertyChanged signals will be send for this
443  * property. The PassphraseRequired property should
444  * be monitored instead.
445  *
446  * This property might also not always be included
447  * since it is protected by a different security policy.
448  *
449  * @param service path to get property.
450  * @param passphrase value to set.
451  * @param cb function to call when server replies or some error happens.
452  * @param data data to give to cb when it is called.
453  *
454  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
455  * @see e_connman_service_passphrase_get()
456  */
457 Eina_Bool
458 e_connman_service_passphrase_set(E_Connman_Element *service, const char *passphrase, E_DBus_Method_Return_Cb cb, const void *data)
459 {
460    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
461    return e_connman_element_property_set_full
462              (service, e_connman_prop_passphrase, DBUS_TYPE_STRING,
463              passphrase, cb, data);
464 }
465
466 /**
467  * Get property "PassphraseRequired" value.
468  *
469  * If this property isn't found then @c EINA_FALSE is returned.
470  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
471  * values shall be considered invalid.
472  *
473  * If the service type is WiFi, then this property
474  * indicates if a passphrase is required.
475  *
476  * If a passphrase has been set already or if no
477  * passphrase is needed, then this property will
478  * be set to false.
479  *
480  * @param service path to get property.
481  * @param passphrase_required where to store the property value, must be a
482  *        pointer to Eina_Bool (Eina_Bool *).
483  *
484  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
485  */
486 Eina_Bool
487 e_connman_service_passphrase_required_get(const E_Connman_Element *service, Eina_Bool *passphrase_required)
488 {
489    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
490    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase_required, EINA_FALSE);
491    return e_connman_element_property_get_stringshared
492              (service, e_connman_prop_passphrase_required, NULL, passphrase_required);
493 }
494
495 /**
496  * Get property "Strength" value.
497  *
498  * If this property isn't found then @c EINA_FALSE is returned.
499  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
500  * values shall be considered invalid.
501  *
502  * Indicates the signal strength of the service. This
503  * is a normalized value between 0 and 100.
504  *
505  * This property will not be present for Ethernet
506  * devices.
507  *
508  * @param service path to get property.
509  * @param strength where to store the property value, must be a pointer
510  *        to byte (unsigned char*).
511  *
512  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
513  */
514 Eina_Bool
515 e_connman_service_strength_get(const E_Connman_Element *service, unsigned char *strength)
516 {
517    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
518    EINA_SAFETY_ON_NULL_RETURN_VAL(strength, EINA_FALSE);
519    return e_connman_element_property_get_stringshared
520              (service, e_connman_prop_strength, NULL, strength);
521 }
522
523 /**
524  * Get property "Favorite" value.
525  *
526  * If this property isn't found then @c EINA_FALSE is returned.
527  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
528  * values shall be considered invalid.
529  *
530  * Will be true if a cable is plugged in or the user
531  * selected and successfully connected to this service.
532  *
533  * This value is automatically changed and to revert
534  * it back to false the Remove() method needs to be
535  * used.
536  *
537  * @param service path to get property.
538  * @param favorite where to store the property value, must be a
539  *        pointer to Eina_Bool (Eina_Bool *).
540  *
541  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
542  */
543 Eina_Bool
544 e_connman_service_favorite_get(const E_Connman_Element *service, Eina_Bool *favorite)
545 {
546    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
547    EINA_SAFETY_ON_NULL_RETURN_VAL(favorite, EINA_FALSE);
548    return e_connman_element_property_get_stringshared
549              (service, e_connman_prop_favorite, NULL, favorite);
550 }
551
552 /**
553  * Get property "Immutable" value.
554  *
555  * This value will be set to true if the service is configured
556  * externally via a configuration file.
557  *
558  * The only valid operation are e_connman_service_connect() and
559  * e_connman_service_disconnect(). The e_connman_service_remove()
560  * method will result in an error.
561
562  * @param service path to get property.
563  * @param immutable where to store the property value, must be a
564  *        pointer to Eina_Bool (Eina_Bool *).
565  *
566  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
567  */
568 Eina_Bool
569 e_connman_service_immutable_get(const E_Connman_Element *service, Eina_Bool *immutable)
570 {
571    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
572    EINA_SAFETY_ON_NULL_RETURN_VAL(immutable, EINA_FALSE);
573    return e_connman_element_property_get_stringshared
574              (service, e_connman_prop_immutable, NULL, immutable);
575 }
576
577 /**
578  * Get property "AutoConnect" value.
579  *
580  * If this property isn't found then @c EINA_FALSE is returned.
581  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
582  * values shall be considered invalid.
583  *
584  * If set to true, this service will auto-connect
585  * when not other connection is available.
586  *
587  * For favorite services it is possible to change
588  * this value to prevent or permit automatic
589  * connection attempts.
590  *
591  * @param service path to get property.
592  * @param auto_connect where to store the property value, must be a
593  *        pointer to Eina_Bool (Eina_Bool *).
594  *
595  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
596  * @see e_connman_service_auto_connect_set()
597  */
598 Eina_Bool
599 e_connman_service_auto_connect_get(const E_Connman_Element *service, Eina_Bool *auto_connect)
600 {
601    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
602    EINA_SAFETY_ON_NULL_RETURN_VAL(auto_connect, EINA_FALSE);
603    return e_connman_element_property_get_stringshared
604              (service, e_connman_prop_auto_connect, NULL, auto_connect);
605 }
606
607 /**
608  * Set property "AutoConnect" value.
609  *
610  * If this property isn't found then @c EINA_FALSE is returned.
611  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
612  * values shall be considered invalid.
613  *
614  * If set to true, this service will auto-connect
615  * when not other connection is available.
616  *
617  * For favorite services it is possible to change
618  * this value to prevent or permit automatic
619  * connection attempts.
620  *
621  * @param service path to get property.
622  * @param service_favorite where to store the property value, must be a
623  *        pointer to Eina_Bool (Eina_Bool *).
624  *
625  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
626  * @see e_connman_service_auto_connect_get()
627  */
628 Eina_Bool
629 e_connman_service_auto_connect_set(E_Connman_Element *service, Eina_Bool auto_connect, E_DBus_Method_Return_Cb cb, const void *data)
630 {
631    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
632    return e_connman_element_property_set_full
633              (service, e_connman_prop_auto_connect, DBUS_TYPE_BOOLEAN, &auto_connect, cb, data);
634 }
635
636 /**
637  * Get property "SetupRequired" value.
638  *
639  * If this property isn't found then @c EINA_FALSE is returned.
640  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
641  * values shall be considered invalid.
642  *
643  * If the service is Cellular, then this property
644  * indicates that some extra setup steps are required.
645  *
646  * In most cases it is required to fill in the APN
647  * details.
648  *
649  * @param service path to get property.
650  * @param setup_required where to store the property value, must be a
651  *        pointer to Eina_Bool (Eina_Bool *).
652  *
653  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
654  */
655 Eina_Bool
656 e_connman_service_setup_required_get(const E_Connman_Element *service, Eina_Bool *setup_required)
657 {
658    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
659    EINA_SAFETY_ON_NULL_RETURN_VAL(setup_required, EINA_FALSE);
660    return e_connman_element_property_get_stringshared
661              (service, e_connman_prop_setup_required, NULL, setup_required);
662 }
663
664 /**
665  * Get property "APN" value.
666  *
667  * If this property isn't found then @c EINA_FALSE is returned.
668  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
669  * values shall be considered invalid.
670  *
671  * If the service is Cellular, then this property
672  * contains the APN details.
673  *
674  * The APN is network provider specific and even
675  * sometimes data plan specific. Possible examples
676  * are "isp.cingular" or "internet.t-mobile".
677  *
678  * This property might also not always be included
679  * since it is protected by a different security policy.
680  *
681  * @param service path to get property.
682  * @param apn where to store the property value, must be a pointer
683  *        to string (const char **), it will not be allocated or
684  *        copied and references will be valid until element changes,
685  *        so copy it if you want to use it later.
686  *
687  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
688  * @see e_connman_service_apn_set()
689  */
690 Eina_Bool
691 e_connman_service_apn_get(const E_Connman_Element *service, const char **apn)
692 {
693    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
694    EINA_SAFETY_ON_NULL_RETURN_VAL(apn, EINA_FALSE);
695    return e_connman_element_property_get_stringshared
696              (service, e_connman_prop_apn, NULL, apn);
697 }
698
699 /**
700  * Set property "APN" value.
701  *
702  * If this property isn't found then @c EINA_FALSE is returned.
703  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
704  * values shall be considered invalid.
705  *
706  * If the service is Cellular, then this property
707  * contains the APN details.
708  *
709  * The APN is network provider specific and even
710  * sometimes data plan specific. Possible examples
711  * are "isp.cingular" or "internet.t-mobile".
712  *
713  * This property might also not always be included
714  * since it is protected by a different security policy.
715  *
716  * @param service path to get property.
717  * @param passphrase value to set.
718  * @param cb function to call when server replies or some error happens.
719  * @param data data to give to cb when it is called.
720  *
721  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
722  * @see e_connman_service_apn_get()
723  */
724 Eina_Bool
725 e_connman_service_apn_set(E_Connman_Element *service, const char *apn, E_DBus_Method_Return_Cb cb, const void *data)
726 {
727    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
728    return e_connman_element_property_set_full
729              (service, e_connman_prop_apn, DBUS_TYPE_STRING,
730              apn, cb, data);
731 }
732
733 /**
734  * Get property "MCC" value.
735  *
736  * If this property isn't found then @c EINA_FALSE is returned.
737  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
738  * values shall be considered invalid.
739  *
740  * If the service is Cellular, then this property
741  * contains the Mobile Country Code.
742  *
743  * @param service path to get property.
744  * @param mcc where to store the property value, must be a pointer
745  *        to string (const char **), it will not be allocated or
746  *        copied and references will be valid until element changes,
747  *        so copy it if you want to use it later.
748  *
749  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
750  */
751 Eina_Bool
752 e_connman_service_mcc_get(const E_Connman_Element *service, const char **mcc)
753 {
754    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
755    EINA_SAFETY_ON_NULL_RETURN_VAL(mcc, EINA_FALSE);
756    return e_connman_element_property_get_stringshared
757              (service, e_connman_prop_mcc, NULL, mcc);
758 }
759
760 /**
761  * Get property "MNC" value.
762  *
763  * If this property isn't found then @c EINA_FALSE is returned.
764  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
765  * values shall be considered invalid.
766  *
767  * If the service is Cellular, then this property
768  * contains the Mobile Network Code.
769  *
770  * @param service path to get property.
771  * @param mnc where to store the property value, must be a pointer
772  *        to string (const char **), it will not be allocated or
773  *        copied and references will be valid until element changes,
774  *        so copy it if you want to use it later.
775  *
776  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
777  */
778 Eina_Bool
779 e_connman_service_mnc_get(const E_Connman_Element *service, const char **mnc)
780 {
781    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
782    EINA_SAFETY_ON_NULL_RETURN_VAL(mnc, EINA_FALSE);
783    return e_connman_element_property_get_stringshared
784              (service, e_connman_prop_mnc, NULL, mnc);
785 }
786
787 /**
788  * Get property "Roaming" value.
789  *
790  * If this property isn't found then @c EINA_FALSE is returned.
791  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
792  * values shall be considered invalid.
793  *
794  * This property indicates if this service is roaming.
795  *
796  * In the case of Cellular services this normally
797  * indicates connections to a foreign provider when
798  * traveling abroad.
799  *
800  * @param service path to get property.
801  * @param roaming where to store the property value, must be a
802  *        pointer to Eina_Bool (Eina_Bool *).
803  *
804  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
805  */
806 Eina_Bool
807 e_connman_service_roaming_get(const E_Connman_Element *service, Eina_Bool *roaming)
808 {
809    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
810    EINA_SAFETY_ON_NULL_RETURN_VAL(roaming, EINA_FALSE);
811    return e_connman_element_property_get_stringshared
812              (service, e_connman_prop_roaming, NULL, roaming);
813 }
814
815 /**
816  * Get property "IPv4.Method" value.
817  *
818  * If this property isn't found then @c EINA_FALSE is returned.
819  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
820  * values shall be considered invalid.
821  *
822  * The IPv4 method in use. Possible values here are "dhcp" and
823  * "static".
824  *
825  * @param service path to get property.
826  * @param method where to store the property value, must be a pointer
827  *        to string (const char **), it will not be allocated or
828  *        copied and references will be valid until element changes,
829  *        so copy it if you want to use it later.
830  *
831  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
832  */
833 Eina_Bool
834 e_connman_service_ipv4_method_get(const E_Connman_Element *service, const char **method)
835 {
836    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
837    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
838    return e_connman_element_property_dict_get_stringshared
839              (service, e_connman_prop_ipv4, e_connman_prop_method, NULL, method);
840 }
841
842 /**
843  * Get property "IPv4.Address" value.
844  *
845  * If this property isn't found then @c EINA_FALSE is returned.
846  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
847  * values shall be considered invalid.
848  *
849  * The current IPv4 address.
850  *
851  * @param service path to get property.
852  * @param address where to store the property value, must be a pointer
853  *        to string (const char **), it will not be allocated or
854  *        copied and references will be valid until element changes,
855  *        so copy it if you want to use it later.
856  *
857  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
858  */
859 Eina_Bool
860 e_connman_service_ipv4_address_get(const E_Connman_Element *service, const char **address)
861 {
862    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
863    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
864    return e_connman_element_property_dict_get_stringshared
865              (service, e_connman_prop_ipv4, e_connman_prop_address, NULL, address);
866 }
867
868 /**
869  * Get property "IPv4.Gateway" value.
870  *
871  * If this property isn't found then @c EINA_FALSE is returned.
872  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
873  * values shall be considered invalid.
874  *
875  * The current IPv4 gateway.
876  *
877  * @param service path to get property.
878  * @param gateway where to store the property value, must be a pointer
879  *        to string (const char **), it will not be allocated or
880  *        copied and references will be valid until element changes,
881  *        so copy it if you want to use it later.
882  *
883  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
884  */
885 Eina_Bool
886 e_connman_service_ipv4_gateway_get(const E_Connman_Element *service, const char **gateway)
887 {
888    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
889    EINA_SAFETY_ON_NULL_RETURN_VAL(gateway, EINA_FALSE);
890    return e_connman_element_property_dict_get_stringshared
891              (service, e_connman_prop_ipv4, e_connman_prop_gateway, NULL, gateway);
892 }
893
894 /**
895  * Get property "IPv4.Netmask" value.
896  *
897  * If this property isn't found then @c EINA_FALSE is returned.
898  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
899  * values shall be considered invalid.
900  *
901  * The current IPv4 netmask.
902  *
903  * @param service path to get property.
904  * @param netmask where to store the property value, must be a pointer
905  *        to string (const char **), it will not be allocated or
906  *        copied and references will be valid until element changes,
907  *        so copy it if you want to use it later.
908  *
909  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
910  */
911 Eina_Bool
912 e_connman_service_ipv4_netmask_get(const E_Connman_Element *service, const char **netmask)
913 {
914    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
915    EINA_SAFETY_ON_NULL_RETURN_VAL(netmask, EINA_FALSE);
916    return e_connman_element_property_dict_get_stringshared
917              (service, e_connman_prop_ipv4, e_connman_prop_netmask, NULL, netmask);
918 }
919
920 /**
921  * Get property "IPv4.Configuration.Method" value.
922  *
923  * Unlike IPv4.Method, this is the user-set value, rather than the
924  * actual value.
925  *
926  * If this property isn't found then @c EINA_FALSE is returned.
927  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
928  * values shall be considered invalid.
929  *
930  * The IPv4 configured method. Possible values here are "dhcp" and
931  * "static".
932  *
933  * @param service path to get property.
934  * @param method where to store the property value, must be a pointer
935  *        to string (const char **), it will not be allocated or
936  *        copied and references will be valid until element changes,
937  *        so copy it if you want to use it later.
938  *
939  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
940  */
941 Eina_Bool
942 e_connman_service_ipv4_configuration_method_get(const E_Connman_Element *service, const char **method)
943 {
944    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
945    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
946    return e_connman_element_property_dict_get_stringshared
947              (service, e_connman_prop_ipv4_configuration, e_connman_prop_method,
948              NULL, method);
949 }
950
951 /**
952  * Get property "IPv4.Configuration.Address" value.
953  *
954  * Unlike IPv4.Address, this is the user-set value, rather than the
955  * actual value.
956  *
957  * If this property isn't found then @c EINA_FALSE is returned.
958  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
959  * values shall be considered invalid.
960  *
961  * The current configured IPv4 address.
962  *
963  * @param service path to get property.
964  * @param address where to store the property value, must be a pointer
965  *        to string (const char **), it will not be allocated or
966  *        copied and references will be valid until element changes,
967  *        so copy it if you want to use it later.
968  *
969  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
970  */
971 Eina_Bool
972 e_connman_service_ipv4_configuration_address_get(const E_Connman_Element *service, const char **address)
973 {
974    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
975    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
976    return e_connman_element_property_dict_get_stringshared
977              (service, e_connman_prop_ipv4_configuration, e_connman_prop_address,
978              NULL, address);
979 }
980
981 /**
982  * Get property "IPv4.Configuration.Gateway" value.
983  *
984  * Unlike IPv4.Gateway, this is the user-set value, rather than the
985  * actual value.
986  *
987  * If this property isn't found then @c EINA_FALSE is returned.
988  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
989  * values shall be considered invalid.
990  *
991  * The current configured IPv4 gateway.
992  *
993  * @param service path to get property.
994  * @param gateway where to store the property value, must be a pointer
995  *        to string (const char **), it will not be allocated or
996  *        copied and references will be valid until element changes,
997  *        so copy it if you want to use it later.
998  *
999  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1000  */
1001 Eina_Bool
1002 e_connman_service_ipv4_configuration_gateway_get(const E_Connman_Element *service, const char **gateway)
1003 {
1004    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1005    EINA_SAFETY_ON_NULL_RETURN_VAL(gateway, EINA_FALSE);
1006    return e_connman_element_property_dict_get_stringshared
1007              (service, e_connman_prop_ipv4_configuration, e_connman_prop_gateway,
1008              NULL, gateway);
1009 }
1010
1011 /**
1012  * Get property "IPv4.Configuration.Netmask" value.
1013  *
1014  * Unlike IPv4.Netmask, this is the user-set value, rather than the
1015  * actual value.
1016  *
1017  * If this property isn't found then @c EINA_FALSE is returned.
1018  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1019  * values shall be considered invalid.
1020  *
1021  * The current configured IPv4 netmask.
1022  *
1023  * @param service path to get property.
1024  * @param netmask where to store the property value, must be a pointer
1025  *        to string (const char **), it will not be allocated or
1026  *        copied and references will be valid until element changes,
1027  *        so copy it if you want to use it later.
1028  *
1029  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1030  */
1031 Eina_Bool
1032 e_connman_service_ipv4_configuration_netmask_get(const E_Connman_Element *service, const char **netmask)
1033 {
1034    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1035    EINA_SAFETY_ON_NULL_RETURN_VAL(netmask, EINA_FALSE);
1036    return e_connman_element_property_dict_get_stringshared
1037              (service, e_connman_prop_ipv4_configuration, e_connman_prop_netmask,
1038              NULL, netmask);
1039 }
1040
1041 /**
1042  * Set IPv4 to connect automatically using DHCP.
1043  *
1044  * @param service path to set.
1045  * @param cb function to call when server replies or some error happens.
1046  * @param data data to give to cb when it is called.
1047  *
1048  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1049  */
1050 Eina_Bool
1051 e_connman_service_ipv4_configure_dhcp(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
1052 {
1053    const char method[] = "dhcp";
1054    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1055    return e_connman_element_property_dict_set_full
1056              (service, e_connman_prop_ipv4_configuration, e_connman_prop_method,
1057              DBUS_TYPE_STRING, method, cb, data);
1058 }
1059
1060 /**
1061  * Set IPv4 to connect using manually set parameters.
1062  *
1063  * @param service path to set.
1064  * @param address IPv4 address.
1065  * @param netmask IPv4 netmask, or @c NULL for "/32".
1066  * @param gateway IPv4 gateway address.
1067  * @param cb function to call when server replies or some error happens.
1068  * @param data data to give to cb when it is called.
1069  *
1070  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1071  */
1072 Eina_Bool
1073 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)
1074 {
1075    const char name[] = "SetProperty";
1076    const char *method = "manual"; /* not method[] as gcc screws it with dbus */
1077    DBusMessage *msg;
1078    DBusMessageIter itr, variant, dict, entry;
1079
1080    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1081    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
1082
1083    msg = dbus_message_new_method_call
1084          (e_connman_system_bus_name_get(), service->path, service->interface, name);
1085
1086    if (!msg)
1087       return 0;
1088
1089    dbus_message_iter_init_append(msg, &itr);
1090    dbus_message_iter_append_basic
1091       (&itr, DBUS_TYPE_STRING, &e_connman_prop_ipv4_configuration);
1092
1093    dbus_message_iter_open_container
1094       (&itr, DBUS_TYPE_VARIANT,
1095       (DBUS_TYPE_ARRAY_AS_STRING
1096        DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1097        DBUS_TYPE_STRING_AS_STRING
1098        DBUS_TYPE_STRING_AS_STRING
1099        DBUS_DICT_ENTRY_END_CHAR_AS_STRING),
1100       &variant);
1101    dbus_message_iter_open_container
1102       (&variant, DBUS_TYPE_ARRAY,
1103       (DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
1104        DBUS_TYPE_STRING_AS_STRING
1105        DBUS_TYPE_STRING_AS_STRING
1106        DBUS_DICT_ENTRY_END_CHAR_AS_STRING),
1107       &dict);
1108
1109    dbus_message_iter_open_container(&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1110    dbus_message_iter_append_basic
1111       (&entry, DBUS_TYPE_STRING, &e_connman_prop_method);
1112    dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &method);
1113    dbus_message_iter_close_container(&dict, &entry);
1114
1115    dbus_message_iter_open_container(&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1116    dbus_message_iter_append_basic
1117       (&entry, DBUS_TYPE_STRING, &e_connman_prop_address);
1118    dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &address);
1119    dbus_message_iter_close_container(&dict, &entry);
1120
1121    if (netmask)
1122      {
1123         dbus_message_iter_open_container
1124            (&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1125         dbus_message_iter_append_basic
1126            (&entry, DBUS_TYPE_STRING, &e_connman_prop_netmask);
1127         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &netmask);
1128         dbus_message_iter_close_container(&dict, &entry);
1129      }
1130
1131    if (gateway)
1132      {
1133         dbus_message_iter_open_container
1134            (&dict, DBUS_TYPE_DICT_ENTRY, NULL, &entry);
1135         dbus_message_iter_append_basic
1136            (&entry, DBUS_TYPE_STRING, &e_connman_prop_gateway);
1137         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &gateway);
1138         dbus_message_iter_close_container(&dict, &entry);
1139      }
1140
1141    dbus_message_iter_close_container(&variant, &dict);
1142    dbus_message_iter_close_container(&itr, &variant);
1143
1144    return e_connman_element_message_send
1145              (service, name, NULL, msg, &service->_pending.property_set, cb, data);
1146 }
1147
1148 /**
1149  * Get property "Ethernet.Method" value.
1150  *
1151  * If this property isn't found then @c EINA_FALSE is returned.
1152  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1153  * values shall be considered invalid.
1154  *
1155  * The Ethernet configuration method. Possible values here "auto".
1156  *
1157  * @param service path to get property.
1158  * @param method where to store the property value, must be a pointer
1159  *        to string (const char **), it will not be allocated or
1160  *        copied and references will be valid until element changes,
1161  *        so copy it if you want to use it later.
1162  *
1163  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1164  */
1165 Eina_Bool
1166 e_connman_service_ethernet_method_get(const E_Connman_Element *service, const char **method)
1167 {
1168    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1169    EINA_SAFETY_ON_NULL_RETURN_VAL(method, EINA_FALSE);
1170    return e_connman_element_property_dict_get_stringshared
1171              (service, e_connman_prop_ethernet, e_connman_prop_method, NULL, method);
1172 }
1173
1174 /**
1175  * Get property "Ethernet.Address" value.
1176  *
1177  * If this property isn't found then @c EINA_FALSE is returned.
1178  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1179  * values shall be considered invalid.
1180  *
1181  * The current configured Ethernet address (mac-address).
1182  *
1183  * @param service path to get property.
1184  * @param address where to store the property value, must be a pointer
1185  *        to string (const char **), it will not be allocated or
1186  *        copied and references will be valid until element changes,
1187  *        so copy it if you want to use it later.
1188  *
1189  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1190  */
1191 Eina_Bool
1192 e_connman_service_ethernet_address_get(const E_Connman_Element *service, const char **address)
1193 {
1194    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1195    EINA_SAFETY_ON_NULL_RETURN_VAL(address, EINA_FALSE);
1196    return e_connman_element_property_dict_get_stringshared
1197              (service, e_connman_prop_ethernet, e_connman_prop_address, NULL, address);
1198 }
1199
1200 /**
1201  * Get property "Ethernet.Gateway" value.
1202  *
1203  * If this property isn't found then @c EINA_FALSE is returned.
1204  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1205  * values shall be considered invalid.
1206  *
1207  * The current configured Ethernet MTU.
1208  *
1209  * @param service path to get property.
1210  * @param gateway where to store the property value, must be a pointer
1211  *        to string (const char **), it will not be allocated or
1212  *        copied and references will be valid until element changes,
1213  *        so copy it if you want to use it later.
1214  *
1215  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1216  */
1217 Eina_Bool
1218 e_connman_service_ethernet_mtu_get(const E_Connman_Element *service, unsigned short *mtu)
1219 {
1220    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1221    EINA_SAFETY_ON_NULL_RETURN_VAL(mtu, EINA_FALSE);
1222    return e_connman_element_property_dict_get_stringshared
1223              (service, e_connman_prop_ethernet, e_connman_prop_mtu, NULL, mtu);
1224 }
1225
1226 /**
1227  * Get property "Ethernet.Netmask" value.
1228  *
1229  * If this property isn't found then @c EINA_FALSE is returned.
1230  * If @c EINA_FALSE is returned, then this call failed and parameter-returned
1231  * values shall be considered invalid.
1232  *
1233  * The current configured Ethernet netmask.
1234  *
1235  * @param service path to get property.
1236  * @param netmask where to store the property value, must be a pointer
1237  *        to string (const char **), it will not be allocated or
1238  *        copied and references will be valid until element changes,
1239  *        so copy it if you want to use it later.
1240  *
1241  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1242  */
1243 Eina_Bool
1244 e_connman_service_ethernet_netmask_get(const E_Connman_Element *service, const char **netmask)
1245 {
1246    EINA_SAFETY_ON_NULL_RETURN_VAL(service, EINA_FALSE);
1247    EINA_SAFETY_ON_NULL_RETURN_VAL(netmask, EINA_FALSE);
1248    return e_connman_element_property_dict_get_stringshared
1249              (service, e_connman_prop_ethernet, e_connman_prop_netmask, NULL, netmask);
1250 }
1251