barbieri pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7e648c46df3a5792cd3b4b81c9a0301b943f6bc3
commit 7e648c46df3a5792cd3b4b81c9a0301b943f6bc3 Author: Gustavo Sverzut Barbieri <[email protected]> Date: Mon Dec 12 09:57:36 2016 -0200 efl_net_ip_address: improve docs. thanks stefan for reminding me of these :-) --- src/lib/ecore_con/efl_net_ip_address.eo | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore_con/efl_net_ip_address.eo b/src/lib/ecore_con/efl_net_ip_address.eo index d43cd69..a9e2d7b 100644 --- a/src/lib/ecore_con/efl_net_ip_address.eo +++ b/src/lib/ecore_con/efl_net_ip_address.eo @@ -4,7 +4,6 @@ struct Efl.Net.Ip.Address.Resolve_Results { [[The results of @Efl.Net.Ip.Address.resolve call. This structure is created by @Efl.Net.Ip.Address.resolve. - XXX should be destroyed manually? @since 1.19 ]] @@ -162,7 +161,7 @@ class Efl.Net.Ip.Address (Efl.Object) { Must be set after @.family. ]] values { - address: const(ptr(Eina.Slice)) @nonull; [[Address]] + address: const(ptr(Eina.Slice)) @nonull; [[Address bytes. If AF_INET it's 4 bytes. If AF_INET6, it's 16 bytes. This matches exactly what is in struct sockaddr_in::sin_addr or struct sockaddr_in6:sin6_addr, see @.sockaddr]] } } @@ -172,7 +171,7 @@ class Efl.Net.Ip.Address (Efl.Object) { May only be set once, afterwards the object is not changing. ]] values { - sockaddr: const(void_ptr) @nonull; [[Sockaddr struct]] + sockaddr: const(void_ptr) @nonull; [[Sockaddr struct. As usual with struct sockaddr, the first field, struct sockaddr::sa_family, defines the rest of the structure and how the whole structure must be interpreted. If AF_INET is struct sockaddr_in, AF_INET6 is struct sockaddr_in6.]] } } --
