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