Changes in uspace/lib/c/generic/iplink.c [fafb8e5:889cdb1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/iplink.c
rfafb8e5 r889cdb1 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.