Lines Matching refs:to_port
96 int to_port; member
149 remote_call_alloc( RemoteCallType type, int to_port, int from_port ) in remote_call_alloc() argument
159 rcall->to_port = to_port; in remote_call_alloc()
200 rcall->channel = sys_channel_create_tcp_client( "localhost", to_port ); in remote_call_alloc()
202 D("%s: could not create channel to port %d\n", __FUNCTION__, to_port); in remote_call_alloc()
265 call->from_port, call->to_port, events); in remote_call_event()
285 call->from_port, call->to_port, call->buff_len - call->buff_pos ); in remote_call_event()
309 __FUNCTION__, call->to_port, errno, errno_str); in remote_call_event()
319 S("%s: finished sending data to %d\n", __FUNCTION__, call->to_port); in remote_call_event()
358 int to_port = remote_number_string_to_port(to_number); in remote_call_generic() local
365 if ( to_port < 0 ) { in remote_call_generic()
369 if (to_port == from_port) { in remote_call_generic()
373 call = remote_call_alloc( type, to_port, from_port ); in remote_call_generic()
378 D("%s: adding new call from port %d to port %d\n", __FUNCTION__, from_port, to_port); in remote_call_generic()