Changeset 6769005 in mainline for uspace/srv/net
- Timestamp:
- 2018-10-31T06:03:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53ee7a0
- Parents:
- 94ab1fee
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- Location:
- uspace/srv/net
- Files:
-
- 7 edited
-
dhcp/main.c (modified) (1 diff)
-
dnsrsrv/dnsrsrv.c (modified) (1 diff)
-
inetsrv/inetcfg.c (modified) (1 diff)
-
inetsrv/inetping.c (modified) (1 diff)
-
inetsrv/inetsrv.c (modified) (1 diff)
-
tcp/service.c (modified) (1 diff)
-
udp/service.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
r94ab1fee r6769005 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
r94ab1fee r6769005 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
r94ab1fee r6769005 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
r94ab1fee r6769005 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
r94ab1fee r6769005 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
r94ab1fee r6769005 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
r94ab1fee r6769005 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.
