Changeset f1938c6 in mainline for uspace/srv/net/tl/udp/udp.c
- Timestamp:
- 2011-01-17T15:41:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a2d8d59, ffaba00
- Parents:
- 9f3864a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.c
r9f3864a rf1938c6 61 61 #include <ip_interface.h> 62 62 #include <icmp_client.h> 63 #include <icmp_ interface.h>63 #include <icmp_remote.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(SERVICE_ICMP, 396 ICMP_CONNECT_TIMEOUT); 395 udp_globals.icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT); 397 396 398 397 udp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_UDP, … … 878 877 } 879 878 879 /** Per-connection initialization 880 * 881 */ 882 void tl_connection(void) 883 { 884 } 885 880 886 /** Processes the UDP message. 881 887 * … … 891 897 * @see IS_NET_UDP_MESSAGE() 892 898 */ 893 int tl_m odule_message(ipc_callid_t callid, ipc_call_t *call,899 int tl_message(ipc_callid_t callid, ipc_call_t *call, 894 900 ipc_call_t *answer, size_t *answer_count) 895 901 {
Note:
See TracChangeset
for help on using the changeset viewer.