Changes in uspace/srv/net/tl/tcp/tcp.c [f1938c6:014dd57b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/tcp.c
rf1938c6 r014dd57b 64 64 #include <ip_interface.h> 65 65 #include <icmp_client.h> 66 #include <icmp_ remote.h>66 #include <icmp_interface.h> 67 67 #include <net_interface.h> 68 68 #include <socket_core.h> … … 1204 1204 } 1205 1205 1206 /** Per-connection initialization1207 *1208 */1209 void tl_connection(void)1210 {1211 }1212 1213 1206 /** Processes the TCP message. 1214 1207 * … … 1224 1217 * @see IS_NET_TCP_MESSAGE() 1225 1218 */ 1226 int tl_m essage(ipc_callid_t callid, ipc_call_t *call,1219 int tl_module_message(ipc_callid_t callid, ipc_call_t *call, 1227 1220 ipc_call_t *answer, size_t *answer_count) 1228 1221 { … … 2479 2472 tcp_globals.net_phone = net_phone; 2480 2473 2481 tcp_globals.icmp_phone = icmp_connect_module(ICMP_CONNECT_TIMEOUT); 2474 tcp_globals.icmp_phone = icmp_connect_module(SERVICE_ICMP, 2475 ICMP_CONNECT_TIMEOUT); 2482 2476 tcp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_TCP, 2483 2477 SERVICE_TCP, tcp_receiver);
Note:
See TracChangeset
for help on using the changeset viewer.