Subversion Repositories HelenOS

Rev

Rev 3886 | Rev 3912 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3886 Rev 3901
Line 40... Line 40...
40
#include <ipc/services.h>
40
#include <ipc/services.h>
41
 
41
 
42
#include "../../err.h"
42
#include "../../err.h"
43
#include "../../modules.h"
43
#include "../../modules.h"
44
 
44
 
-
 
45
#include "../../structures/packet/packet.h"
-
 
46
 
45
#include "ip.h"
47
#include "ip.h"
46
#include "ip_module.h"
48
#include "ip_module.h"
47
 
49
 
48
#define NAME    "IP protocol"
50
#define NAME    "IP protocol"
49
 
51
 
Line 61... Line 63...
61
 
63
 
62
    ipcarg_t    phonehash;
64
    ipcarg_t    phonehash;
63
 
65
 
64
    async_set_client_connection( client_connection );
66
    async_set_client_connection( client_connection );
65
    ip_globals.networking_phone = connect_to_service( SERVICE_NETWORKING );
67
    ip_globals.networking_phone = connect_to_service( SERVICE_NETWORKING );
-
 
68
    ERROR_PROPAGATE( pm_init());
66
    ERROR_PROPAGATE( ip_initialize());
69
    ERROR_PROPAGATE( ip_initialize());
67
    ERROR_PROPAGATE( REGISTER_ME( SERVICE_IP, & phonehash ));
70
    ERROR_PROPAGATE( REGISTER_ME( SERVICE_IP, & phonehash ));
68
 
71
 
69
    async_manager();
72
    async_manager();
70
 
73