Changes in uspace/srv/net/tl/icmp/icmp_common.c [1a0fb3f8:aadf01e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/icmp/icmp_common.c
r1a0fb3f8 raadf01e 45 45 #include "icmp_messages.h" 46 46 47 int icmp_connect_module( services_t service, suseconds_t timeout){48 int 47 int icmp_connect_module(services_t service, suseconds_t timeout){ 48 int phone; 49 49 50 phone = connect_to_service_timeout( SERVICE_ICMP, timeout);51 if( phone >= 0){52 async_req_0_0( phone, NET_ICMP_INIT);50 phone = connect_to_service_timeout(SERVICE_ICMP, timeout); 51 if(phone >= 0){ 52 async_req_0_0(phone, NET_ICMP_INIT); 53 53 } 54 54 return phone;
Note:
See TracChangeset
for help on using the changeset viewer.