stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f77a602a096028ec4316e44c92a6ce52549e62a8

commit f77a602a096028ec4316e44c92a6ce52549e62a8
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Fri Nov 18 12:35:02 2016 +0100

    ecore_con: fix time to live value name and type
    
    The time to live hop limit should not be named loopback and have a type that
    can actuall hold the number of hops. It already was always uint8 in the 
code.
    Just fix the eo file.
---
 src/lib/ecore_con/efl_net_server_udp.eo | 2 +-
 src/lib/ecore_con/efl_net_socket_udp.eo | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore_con/efl_net_server_udp.eo 
b/src/lib/ecore_con/efl_net_server_udp.eo
index 0ce212e..21c644e 100644
--- a/src/lib/ecore_con/efl_net_server_udp.eo
+++ b/src/lib/ecore_con/efl_net_server_udp.eo
@@ -100,7 +100,7 @@ class Efl.Net.Server.Udp (Efl.Net.Server.Fd) {
                 return: Eina.Error; [[0 on success, error code otherwise]]
             }
             values {
-                ttl: bool; [[Time to live]]
+                ttl: uint8; [[Time to live]]
             }
         }
 
diff --git a/src/lib/ecore_con/efl_net_socket_udp.eo 
b/src/lib/ecore_con/efl_net_socket_udp.eo
index ee41072..c820338 100644
--- a/src/lib/ecore_con/efl_net_socket_udp.eo
+++ b/src/lib/ecore_con/efl_net_socket_udp.eo
@@ -122,7 +122,7 @@ class Efl.Net.Socket.Udp (Efl.Net.Socket.Fd) {
                 return: Eina.Error; [[0 on success, error code otherwise]]
             }
             values {
-                loopback: bool;
+                ttl: uint8; [[Time to live]]
             }
         }
 

-- 


Reply via email to