Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Revision:
135:2f4290590e51
Parent:
132:05cd37f7e007
--- a/call.cpp	Tue Sep 01 19:34:34 2015 +0000
+++ b/call.cpp	Thu Sep 10 20:11:35 2015 +0000
@@ -73,12 +73,7 @@
     int send = this -> rtp_sock.sendTo ( this -> rtp_server, buffer, SEND_MSG_SIZE );
     
     if ( send not_eq SEND_MSG_SIZE )
-    {
-        if ( debug_reconnect )
-        {
-            vz_printf ( "[%d] Reconnect RTP", this -> cb_ext );
-        }
-        
+    {   
         miss_rtp_udp_send_pkg ++;
         
         reconnect ();
@@ -104,14 +99,6 @@
 int VZ_call::get_rtp_server_ext(){ return rtp_server_ext; }
 int VZ_call::get_rtp_server_port(){ return rtp_server_port; }
 
-uint8_t * VZ_call::get_cb2server_buffer(){ return cb2server; }
-char * VZ_call::get_server2cb_buffer(){ return server2cb; }
-inline uint8_t * VZ_call::get_buffer(){ return buffer; }
-
-bool VZ_call::is_timeout( void ){
-    return ( t.read() > __CALL_MAX_IDLE_TIME__ ) ? true : false;
-}
-
 bool VZ_call::is_timetofinish( void ){
     return ( finish.read() > __MAX_CALL_TIME__ ) ? true : false;
 }