zmike pushed a commit to branch master.

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

commit 73d3a63960072b5e81ea638e9125e26485410c9a
Author: Marcel Hollerbach <[email protected]>
Date:   Mon Jan 28 12:11:48 2019 -0500

    efl_net_server_udp: add empty functions
    
    Summary:
    these functions are never called from within this class, thus they are
    empty here. They are not used because setting up the client does
    require here more API than just a fd.
    
    ref T5719
    Depends on D7791
    
    Reviewers: segfaultxavi, zmike
    
    Reviewed By: segfaultxavi, zmike
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T5719
    
    Differential Revision: https://phab.enlightenment.org/D7802
---
 src/lib/ecore_con/efl_net_server_udp.eo | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/lib/ecore_con/efl_net_server_udp.eo 
b/src/lib/ecore_con/efl_net_server_udp.eo
index 3e4138eed4..8d7fc01ce9 100644
--- a/src/lib/ecore_con/efl_net_server_udp.eo
+++ b/src/lib/ecore_con/efl_net_server_udp.eo
@@ -99,5 +99,8 @@ class Efl.Net.Server_Udp extends Efl.Net.Server_Ip {
         Efl.Net.Server.serve;
         Efl.Net.Server_Fd.process_incoming_data;
         Efl.Net.Server_Fd.socket_activate;
+        //These functions are not used, udp emits the there defined events 
from its internals
+        @empty Efl.Net.Server_Fd.client_add;
+        @empty Efl.Net.Server_Fd.client_reject;
     }
 }

-- 


Reply via email to