Index: uspace/srv/net/dhcp/main.c
===================================================================
--- uspace/srv/net/dhcp/main.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/dhcp/main.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -128,5 +128,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
Index: uspace/srv/net/dnsrsrv/dnsrsrv.c
===================================================================
--- uspace/srv/net/dnsrsrv/dnsrsrv.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/dnsrsrv/dnsrsrv.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -213,5 +213,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
Index: uspace/srv/net/inetsrv/inetcfg.c
===================================================================
--- uspace/srv/net/inetsrv/inetcfg.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/inetsrv/inetcfg.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -742,5 +742,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
Index: uspace/srv/net/inetsrv/inetping.c
===================================================================
--- uspace/srv/net/inetsrv/inetping.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/inetsrv/inetping.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -284,5 +284,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	inetping_client_t client;
Index: uspace/srv/net/inetsrv/inetsrv.c
===================================================================
--- uspace/srv/net/inetsrv/inetsrv.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/inetsrv/inetsrv.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -390,5 +390,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	inet_client_init(&client);
Index: uspace/srv/net/tcp/service.c
===================================================================
--- uspace/srv/net/tcp/service.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/tcp/service.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -1169,5 +1169,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	log_msg(LOG_DEFAULT, LVL_DEBUG, "tcp_client_conn() - client=%p",
Index: uspace/srv/net/udp/service.c
===================================================================
--- uspace/srv/net/udp/service.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/net/udp/service.c	(revision f230cbd5cebf1680274f794fe7eb4c39125fadc8)
@@ -667,5 +667,5 @@
 
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	log_msg(LOG_DEFAULT, LVL_DEBUG, "udp_client_conn()");
