Changes in uspace/srv/net/il/ip/ip.c [9934f7d:7bf12387] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/srv/net/il/ip/ip.c ¶
r9934f7d r7bf12387 77 77 #include <il_skel.h> 78 78 79 // FIXME: remove this header80 #include <kernel/ipc/ipc_methods.h>81 82 79 /** IP module name. */ 83 80 #define NAME "ip" … … 123 120 GENERIC_FIELD_IMPLEMENT(ip_routes, ip_route_t); 124 121 125 static void ip_receiver(ipc_callid_t, ipc_call_t * , void *);122 static void ip_receiver(ipc_callid_t, ipc_call_t *); 126 123 127 124 /** Releases the packet and returns the result. … … 1594 1591 * @param[in] iid Message identifier. 1595 1592 * @param[in,out] icall Message parameters. 1596 * @param[in] arg Local argument.1597 */ 1598 static void ip_receiver(ipc_callid_t iid, ipc_call_t *icall , void *arg)1593 * 1594 */ 1595 static void ip_receiver(ipc_callid_t iid, ipc_call_t *icall) 1599 1596 { 1600 1597 packet_t *packet; … … 1916 1913 1917 1914 *answer_count = 0; 1918 1919 if (!IPC_GET_IMETHOD(*call))1915 switch (IPC_GET_IMETHOD(*call)) { 1916 case IPC_M_PHONE_HUNGUP: 1920 1917 return EOK; 1921 1918 1922 switch (IPC_GET_IMETHOD(*call)) {1923 1919 case IPC_M_CONNECT_TO_ME: 1924 1920 return ip_register(IL_GET_PROTO(*call), IL_GET_SERVICE(*call),
Note:
See TracChangeset
for help on using the changeset viewer.