Changeset eb13ef8 in mainline for uspace/lib/c/generic/iplink.c
- Timestamp:
- 2019-02-06T13:25:12Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fafb8e5
- Parents:
- bb97118
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:04:02)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/iplink.c
rbb97118 reb13ef8 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.