Changes in uspace/lib/packet/generic/packet_server.c [6b82009:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/packet/generic/packet_server.c
r6b82009 r79ae36dd 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; 324 325 *answer_count = 0; 322 326 323 327 if (!IPC_GET_IMETHOD(*call)) 324 328 return EOK; 325 329 326 *answer_count = 0;327 330 switch (IPC_GET_IMETHOD(*call)) { 328 331 case NET_PACKET_CREATE_1:
Note:
See TracChangeset
for help on using the changeset viewer.