Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/tcp.c

    rf1938c6 r014dd57b  
    6464#include <ip_interface.h>
    6565#include <icmp_client.h>
    66 #include <icmp_remote.h>
     66#include <icmp_interface.h>
    6767#include <net_interface.h>
    6868#include <socket_core.h>
     
    12041204}
    12051205
    1206 /** Per-connection initialization
    1207  *
    1208  */
    1209 void tl_connection(void)
    1210 {
    1211 }
    1212 
    12131206/** Processes the TCP message.
    12141207 *
     
    12241217 * @see IS_NET_TCP_MESSAGE()
    12251218 */
    1226 int tl_message(ipc_callid_t callid, ipc_call_t *call,
     1219int tl_module_message(ipc_callid_t callid, ipc_call_t *call,
    12271220    ipc_call_t *answer, size_t *answer_count)
    12281221{
     
    24792472        tcp_globals.net_phone = net_phone;
    24802473       
    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);
    24822476        tcp_globals.ip_phone = ip_bind_service(SERVICE_IP, IPPROTO_TCP,
    24832477            SERVICE_TCP, tcp_receiver);
Note: See TracChangeset for help on using the changeset viewer.