Index: uspace/lib/net/include/il_local.h
===================================================================
--- uspace/lib/net/include/il_local.h	(revision 404dbaecf9ad92b9da256083dcfe665a558b4f99)
+++ uspace/lib/net/include/il_local.h	(revision a8ca1d817fa93ba15a19d092c625d4ed7045f759)
@@ -27,16 +27,42 @@
  */
 
-/** @addtogroup il_local
- *  @{
+/** @addtogroup libnet 
+ * @{
  */
 
-#ifndef __IL_LOCAL_H__
-#define __IL_LOCAL_H__
+#ifndef LIBNET_IL_LOCAL_H_
+#define LIBNET_IL_LOCAL_H_
 
 #include <ipc/ipc.h>
 #include <async.h>
 
+/** Processes the Internet layer module message.
+ *
+ * @param[in]		callid The message identifier.
+ * @param[in]		call The message parameters.
+ * @param[out]		answer The message answer parameters.
+ * @param[out]		answer_count The last parameter for the actual answer in
+ *			the answer parameter.
+ * @returns		EOK on success.
+ * @returns		Other error codes as defined for the arp_message()
+ *			function.
+ */
 extern int il_module_message_standalone(ipc_callid_t callid, ipc_call_t *call,
     ipc_call_t *answer, int *answer_count);
+
+/** Starts the Internet layer module.
+ *
+ * Initializes the client connection servicing function, initializes the module,
+ * registers the module service and starts the async manager, processing IPC
+ * messages in an infinite loop.
+ *
+ * @param[in] client_connection The client connection processing function. The
+ *			module skeleton propagates its own one.
+ * @returns		EOK on successful module termination.
+ * @returns		Other error codes as defined for the arp_initialize()
+ *			function.
+ * @returns		Other error codes as defined for the REGISTER_ME() macro
+ *			function.
+ */
 extern int il_module_start_standalone(async_client_conn_t client_connection);
 
Index: uspace/srv/net/il/arp/arp_module.c
===================================================================
--- uspace/srv/net/il/arp/arp_module.c	(revision 404dbaecf9ad92b9da256083dcfe665a558b4f99)
+++ uspace/srv/net/il/arp/arp_module.c	(revision a8ca1d817fa93ba15a19d092c625d4ed7045f759)
@@ -57,23 +57,8 @@
 extern arp_globals_t	arp_globals;
 
-/** Processes the ARP message.
- *  @param[in] callid The message identifier.
- *  @param[in] call The message parameters.
- *  @param[out] answer The message answer parameters.
- *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
- *  @returns EOK on success.
- *  @returns Other error codes as defined for the arp_message() function.
- */
 int il_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
 	return arp_message_standalone(callid, call, answer, answer_count);
 }
 
-/** Starts the ARP module.
- *  Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
- *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
- *  @returns EOK on successful module termination.
- *  @returns Other error codes as defined for the arp_initialize() function.
- *  @returns Other error codes as defined for the REGISTER_ME() macro function.
- */
 int il_module_start_standalone(async_client_conn_t client_connection){
 	ERROR_DECLARE;
Index: uspace/srv/net/il/ip/ip_module.c
===================================================================
--- uspace/srv/net/il/ip/ip_module.c	(revision 404dbaecf9ad92b9da256083dcfe665a558b4f99)
+++ uspace/srv/net/il/ip/ip_module.c	(revision a8ca1d817fa93ba15a19d092c625d4ed7045f759)
@@ -56,23 +56,8 @@
 extern ip_globals_t ip_globals;
 
-/** Processes the IP message.
- *  @param[in] callid The message identifier.
- *  @param[in] call The message parameters.
- *  @param[out] answer The message answer parameters.
- *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
- *  @returns EOK on success.
- *  @returns Other error codes as defined for the ip_message() function.
- */
 int il_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
 	return ip_message_standalone(callid, call, answer, answer_count);
 }
 
-/** Starts the IP module.
- *  Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
- *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
- *  @returns EOK on successful module termination.
- *  @returns Other error codes as defined for the ip_initialize() function.
- *  @returns Other error codes as defined for the REGISTER_ME() macro function.
- */
 int il_module_start_standalone(async_client_conn_t client_connection){
 	ERROR_DECLARE;
