Changes in uspace/lib/c/generic/iplink.c [889cdb1:fafb8e5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/iplink.c
r889cdb1 rfafb8e5 248 248 iplink_recv_sdu_t sdu; 249 249 250 ip_ver_t ver = IPC_GET_ARG1(*icall);250 ip_ver_t ver = ipc_get_arg1(icall); 251 251 252 252 errno_t rc = async_data_write_accept(&sdu.data, false, 0, 0, 0, … … 287 287 async_get_call(&call); 288 288 289 if (! IPC_GET_IMETHOD(call)) {289 if (!ipc_get_imethod(&call)) { 290 290 async_answer_0(&call, EOK); 291 291 return; 292 292 } 293 293 294 switch ( IPC_GET_IMETHOD(call)) {294 switch (ipc_get_imethod(&call)) { 295 295 case IPLINK_EV_RECV: 296 296 iplink_ev_recv(iplink, &call);
Note:
See TracChangeset
for help on using the changeset viewer.