diff options
Diffstat (limited to 'src/lib/ecore_con')
-rw-r--r-- | src/lib/ecore_con/efl_net_control_access_point.eo | 2 | ||||
-rw-r--r-- | src/lib/ecore_con/efl_net_control_technology.eo | 2 | ||||
-rw-r--r-- | src/lib/ecore_con/efl_net_ip_address.eo | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ecore_con/efl_net_control_access_point.eo b/src/lib/ecore_con/efl_net_control_access_point.eo index dc262099bd..f97ba2ddd0 100644 --- a/src/lib/ecore_con/efl_net_control_access_point.eo +++ b/src/lib/ecore_con/efl_net_control_access_point.eo | |||
@@ -108,7 +108,7 @@ class Efl.Net.Control.Access_Point (Efl.Loop_Consumer) { | |||
108 | EINPROGRESS (the connection was already ongoing) and | 108 | EINPROGRESS (the connection was already ongoing) and |
109 | EALREADY (the connection was already established). | 109 | EALREADY (the connection was already established). |
110 | ]] | 110 | ]] |
111 | return: ptr(Eina.Future) @owned; [[Future for asynchronous connect]] /* NOTE: This should be future<void> */ | 111 | return: future<void> @owned; [[Future for asynchronous connect]] |
112 | } | 112 | } |
113 | 113 | ||
114 | disconnect { | 114 | disconnect { |
diff --git a/src/lib/ecore_con/efl_net_control_technology.eo b/src/lib/ecore_con/efl_net_control_technology.eo index 68c9446ab0..eecf21af0c 100644 --- a/src/lib/ecore_con/efl_net_control_technology.eo +++ b/src/lib/ecore_con/efl_net_control_technology.eo | |||
@@ -90,7 +90,7 @@ class Efl.Net.Control.Technology (Efl.Loop_Consumer) { | |||
90 | state. Otherwise allow the system to perform | 90 | state. Otherwise allow the system to perform |
91 | passive scans in a timely manner. | 91 | passive scans in a timely manner. |
92 | ]] | 92 | ]] |
93 | return: ptr(Eina.Future) @owned; [[Future return for finished background scan]] | 93 | return: future<void> @owned; [[Future return for finished background scan]] |
94 | } | 94 | } |
95 | } | 95 | } |
96 | 96 | ||
diff --git a/src/lib/ecore_con/efl_net_ip_address.eo b/src/lib/ecore_con/efl_net_ip_address.eo index dfb99538b1..e715a0c7bb 100644 --- a/src/lib/ecore_con/efl_net_ip_address.eo +++ b/src/lib/ecore_con/efl_net_ip_address.eo | |||
@@ -112,7 +112,7 @@ class Efl.Net.Ip_Address (Efl.Object) { | |||
112 | family: int @optional; [[Preferred family. AF_UNSPEC or 0 for both, otherwise one of AF_INET or AF_INET6]] | 112 | family: int @optional; [[Preferred family. AF_UNSPEC or 0 for both, otherwise one of AF_INET or AF_INET6]] |
113 | flags: int @optional; [[Flags to use with getaddrinfo(). If 0, default flags are used (AI_V4MAPPED | AI_ADDRCONFIG, if these exist in your system).]] | 113 | flags: int @optional; [[Flags to use with getaddrinfo(). If 0, default flags are used (AI_V4MAPPED | AI_ADDRCONFIG, if these exist in your system).]] |
114 | } | 114 | } |
115 | return: ptr(Eina.Future); [[The resolve results. It contains a list of Efl.Net.Ip_Address, they will be automatically deleted unless you keep a reference to it.]] | 115 | return: future<const(Efl.Net.Ip_Address.Resolve_Results)>; [[The resolve results. It contains a list of Efl.Net.Ip_Address, they will be automatically deleted unless you keep a reference to it.]] |
116 | } | 116 | } |
117 | 117 | ||
118 | @property string { | 118 | @property string { |