Changeset ab87db5 in mainline for uspace/srv/net/inetsrv/inetcfg.c
- Timestamp:
- 2019-02-23T17:16:01Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8c193d83, ca0e838
- Parents:
- bc417660 (diff), 95a47b0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-23 17:16:01)
- git-committer:
- GitHub <noreply@…> (2019-02-23 17:16:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/inetsrv/inetcfg.c
rbc417660 rab87db5 257 257 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_create_static_srv()"); 258 258 259 sysarg_t link_id = IPC_GET_ARG1(*icall);259 sysarg_t link_id = ipc_get_arg1(icall); 260 260 261 261 ipc_call_t call; … … 302 302 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_delete_srv()"); 303 303 304 addr_id = IPC_GET_ARG1(*call);304 addr_id = ipc_get_arg1(call); 305 305 306 306 rc = inetcfg_addr_delete(addr_id); … … 312 312 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_get_srv()"); 313 313 314 sysarg_t addr_id = IPC_GET_ARG1(*icall);314 sysarg_t addr_id = ipc_get_arg1(icall); 315 315 316 316 inet_addr_info_t ainfo; … … 375 375 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_addr_get_id_srv()"); 376 376 377 link_id = IPC_GET_ARG1(*call);377 link_id = ipc_get_arg1(call); 378 378 379 379 rc = async_data_write_accept((void **) &name, true, 0, LOC_NAME_MAXLEN, … … 499 499 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_link_add_srv()"); 500 500 501 link_id = IPC_GET_ARG1(*call);501 link_id = ipc_get_arg1(call); 502 502 503 503 rc = inetcfg_link_add(link_id); … … 516 516 errno_t rc; 517 517 518 link_id = IPC_GET_ARG1(*call);518 link_id = ipc_get_arg1(call); 519 519 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_link_get_srv()"); 520 520 … … 566 566 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_link_remove_srv()"); 567 567 568 link_id = IPC_GET_ARG1(*call);568 link_id = ipc_get_arg1(call); 569 569 570 570 rc = inetcfg_link_remove(link_id); … … 639 639 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_delete_srv()"); 640 640 641 sroute_id = IPC_GET_ARG1(*call);641 sroute_id = ipc_get_arg1(call); 642 642 643 643 rc = inetcfg_sroute_delete(sroute_id); … … 649 649 log_msg(LOG_DEFAULT, LVL_DEBUG, "inetcfg_sroute_get_srv()"); 650 650 651 sysarg_t sroute_id = IPC_GET_ARG1(*icall);651 sysarg_t sroute_id = ipc_get_arg1(icall); 652 652 653 653 inet_sroute_info_t srinfo; … … 747 747 ipc_call_t call; 748 748 async_get_call(&call); 749 sysarg_t method = IPC_GET_IMETHOD(call);749 sysarg_t method = ipc_get_imethod(&call); 750 750 751 751 log_msg(LOG_DEFAULT, LVL_DEBUG, "method %d", (int)method);
Note:
See TracChangeset
for help on using the changeset viewer.