Index: uspace/lib/net/generic/net_checksum.c
===================================================================
--- uspace/lib/net/generic/net_checksum.c	(revision 28a3e74e6d058abea15c330564b3724616fe271b)
+++ uspace/lib/net/generic/net_checksum.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
@@ -106,5 +106,5 @@
 				seed = (seed << 1) ^ ((uint32_t) CRC_DIVIDER_BE);
 			} else {
-				/* shift otherwise */
+				/* Shift otherwise */
 				seed <<= 1;
 			}
Index: uspace/lib/net/il/ip_client.c
===================================================================
--- uspace/lib/net/il/ip_client.c	(revision 28a3e74e6d058abea15c330564b3724616fe271b)
+++ uspace/lib/net/il/ip_client.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
@@ -123,6 +123,7 @@
 		return EOK;
 
-	/* TODO IPv6 */
-/*	case AF_INET6:
+	// TODO IPv6
+#if 0
+	case AF_INET6:
 		if (addrlen != sizeof(struct sockaddr_in6))
 			return EINVAL;
@@ -130,5 +131,5 @@
 		address_in6 = (struct sockaddr_in6 *) addr;
 		return EOK;
-*/
+#endif
 
 	default:
@@ -258,5 +259,5 @@
 		header_in->data_length = htons(data_length);
 		return EOK;
-	/* TODO IPv6 */
+	// TODO IPv6
 	} else {
 		return EINVAL;
Index: uspace/lib/net/include/ip_client.h
===================================================================
--- uspace/lib/net/include/ip_client.h	(revision 28a3e74e6d058abea15c330564b3724616fe271b)
+++ uspace/lib/net/include/ip_client.h	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
@@ -54,5 +54,5 @@
     socklen_t, struct sockaddr *, socklen_t, size_t, void **, size_t *);
 
-/* TODO ipopt manipulation */
+// TODO ipopt manipulation
 
 #endif
Index: uspace/lib/net/tl/socket_core.c
===================================================================
--- uspace/lib/net/tl/socket_core.c	(revision 28a3e74e6d058abea15c330564b3724616fe271b)
+++ uspace/lib/net/tl/socket_core.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
@@ -306,5 +306,5 @@
 		
 	case AF_INET6:
-		/* TODO IPv6 */
+		// TODO IPv6
 		break;
 	}
@@ -376,5 +376,7 @@
 
 	count = 0;
-//	socket_id = socket_globals.last_id;
+#if 0
+	socket_id = socket_globals.last_id;
+#endif
 	do {
 		if (count < SOCKET_ID_TRIES) {
@@ -388,8 +390,10 @@
 			if (socket_id < INT_MAX) {
 				++ socket_id;
-/*			} else if(socket_globals.last_id) {
-*				socket_globals.last_id = 0;
-*				socket_id = 1;
-*/			} else {
+#if 0
+			} else if(socket_globals.last_id) {
+				socket_globals.last_id = 0;
+				socket_id = 1;
+#endif
+			} else {
 				return ELIMIT;
 			}
