Changes in uspace/srv/net/tl/udp/udp.c [f1938c6:014dd57b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.c
rf1938c6 r014dd57b 61 61 #include <ip_interface.h> 62 62 #include <icmp_client.h> 63 #include <icmp_ remote.h>63 #include <icmp_interface.h> 64 64 #include <net_interface.h> 65 65 #include <socket_core.h> … … 393 393 udp_globals.net_phone = net_phone; 394 394 395 udp_globals.icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT); 395 udp_globals.icmp_phone = icmp_connect_module(SERVICE_ICMP, 396 ICMP_CONNECT_TIMEOUT); 396 397 397 398 udp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_UDP, … … 877 878 } 878 879 879 /** Per-connection initialization880 *881 */882 void tl_connection(void)883 {884 }885 886 880 /** Processes the UDP message. 887 881 * … … 897 891 * @see IS_NET_UDP_MESSAGE() 898 892 */ 899 int tl_m essage(ipc_callid_t callid, ipc_call_t *call,893 int tl_module_message(ipc_callid_t callid, ipc_call_t *call, 900 894 ipc_call_t *answer, size_t *answer_count) 901 895 {
Note:
See TracChangeset
for help on using the changeset viewer.