Changes in uspace/lib/packet/generic/packet_server.c [6b82009:28a3e74] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/packet/generic/packet_server.c
r6b82009 r28a3e74 36 36 37 37 #include <packet_server.h> 38 38 39 #include <align.h> 39 40 #include <assert.h> … … 316 317 * packet_release_wrapper() function. 317 318 */ 318 int packet_server_message(ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, 319 int 320 packet_server_message(ipc_callid_t callid, ipc_call_t *call, ipc_call_t *answer, 319 321 size_t *answer_count) 320 322 { 321 323 packet_t *packet; 322 323 if (!IPC_GET_IMETHOD(*call)) 324 return EOK; 325 324 326 325 *answer_count = 0; 327 326 switch (IPC_GET_IMETHOD(*call)) { 327 case IPC_M_PHONE_HUNGUP: 328 return EOK; 329 328 330 case NET_PACKET_CREATE_1: 329 331 packet = packet_get_local(DEFAULT_ADDR_LEN, DEFAULT_PREFIX,
Note:
See TracChangeset
for help on using the changeset viewer.