Changeset f5837524 in mainline for uspace/srv/net
- Timestamp:
- 2018-10-29T17:15:02Z (7 years ago)
- Children:
- eec201d
- Parents:
- 184f2f8a
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-29 17:15:02)
- Location:
- uspace/srv/net
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
r184f2f8a rf5837524 128 128 129 129 /* Accept the connection */ 130 async_answer_ 0(icall, EOK);130 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 131 131 132 132 while (true) { -
uspace/srv/net/dnsrsrv/dnsrsrv.c
r184f2f8a rf5837524 213 213 214 214 /* Accept the connection */ 215 async_answer_ 0(icall, EOK);215 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 216 216 217 217 while (true) { -
uspace/srv/net/inetsrv/inetcfg.c
r184f2f8a rf5837524 742 742 743 743 /* Accept the connection */ 744 async_answer_ 0(icall, EOK);744 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 745 745 746 746 while (true) { -
uspace/srv/net/inetsrv/inetping.c
r184f2f8a rf5837524 284 284 285 285 /* Accept the connection */ 286 async_answer_ 0(icall, EOK);286 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 287 287 288 288 inetping_client_t client; -
uspace/srv/net/inetsrv/inetsrv.c
r184f2f8a rf5837524 390 390 391 391 /* Accept the connection */ 392 async_answer_ 0(icall, EOK);392 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 393 393 394 394 inet_client_init(&client); -
uspace/srv/net/tcp/service.c
r184f2f8a rf5837524 1169 1169 1170 1170 /* Accept the connection */ 1171 async_answer_ 0(icall, EOK);1171 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 1172 1172 1173 1173 log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_client_conn() - client=%p", -
uspace/srv/net/udp/service.c
r184f2f8a rf5837524 667 667 668 668 /* Accept the connection */ 669 async_answer_ 0(icall, EOK);669 async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label()); 670 670 671 671 log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_client_conn()");
Note:
See TracChangeset
for help on using the changeset viewer.