Changeset ab87db5 in mainline for uspace/srv/net/inetsrv
- Timestamp:
- 2019-02-23T17:16:01Z (7 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)
- Location:
- uspace/srv/net/inetsrv
- Files:
-
- 3 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); -
uspace/srv/net/inetsrv/inetping.c
rbc417660 rab87db5 143 143 errno_t rc; 144 144 145 sdu.seq_no = IPC_GET_ARG1(*icall);145 sdu.seq_no = ipc_get_arg1(icall); 146 146 147 147 ipc_call_t call; … … 294 294 ipc_call_t call; 295 295 async_get_call(&call); 296 sysarg_t method = IPC_GET_IMETHOD(call);296 sysarg_t method = ipc_get_imethod(&call); 297 297 298 298 if (!method) { -
uspace/srv/net/inetsrv/inetsrv.c
rbc417660 rab87db5 233 233 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_get_srcaddr_srv()"); 234 234 235 uint8_t tos = IPC_GET_ARG1(*icall);235 uint8_t tos = ipc_get_arg1(icall); 236 236 237 237 ipc_call_t call; … … 291 291 inet_dgram_t dgram; 292 292 293 dgram.iplink = IPC_GET_ARG1(*icall);294 dgram.tos = IPC_GET_ARG2(*icall);295 296 uint8_t ttl = IPC_GET_ARG3(*icall);297 int df = IPC_GET_ARG4(*icall);293 dgram.iplink = ipc_get_arg1(icall); 294 dgram.tos = ipc_get_arg2(icall); 295 296 uint8_t ttl = ipc_get_arg3(icall); 297 int df = ipc_get_arg4(icall); 298 298 299 299 ipc_call_t call; … … 352 352 sysarg_t proto; 353 353 354 proto = IPC_GET_ARG1(*call);354 proto = ipc_get_arg1(call); 355 355 log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_set_proto_srv(%lu)", (unsigned long) proto); 356 356 … … 397 397 ipc_call_t call; 398 398 async_get_call(&call); 399 sysarg_t method = IPC_GET_IMETHOD(call);399 sysarg_t method = ipc_get_imethod(&call); 400 400 401 401 if (!method) {
Note:
See TracChangeset
for help on using the changeset viewer.