diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2018-05-03 17:13:28 +0200 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2018-05-03 17:14:39 +0200 |
commit | f58bdbf23ae90caf0baf1e0c0d8ea2eb9390cad3 (patch) | |
tree | 33fb4f277945cbdbe0a6820a313b026998de4fef /src/lib/ecore_con/efl_net_ip_address.eo | |
parent | 3a55fe0bbf2887851f7cbdb828227a3ae74bb0a4 (diff) |
eolian: switch Eina.Future instances to future<T>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_con/efl_net_ip_address.eo | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |