mod_netconf: doxygen - module netconf_operations
diff --git a/src/mod_netconf.c b/src/mod_netconf.c
index ac014ae..932fb1f 100644
--- a/src/mod_netconf.c
+++ b/src/mod_netconf.c
@@ -205,6 +205,17 @@
 	if (sid) json_object_object_add(err_reply, "session-id", json_object_new_string(sid));
 }
 
+/**
+ * \defgroup netconf_operations NETCONF operations
+ * The list of NETCONF operations that mod_netconf supports.
+ * @{
+ */
+
+/**
+ * \brief Connect to NETCONF server
+ *
+ * \warning Session_key hash is not bound with caller identification. This could be potential security risk.
+ */
 static char* netconf_connect(server_rec* server, apr_pool_t* pool, apr_hash_t* conns, const char* host, const char* port, const char* user, const char* pass, struct nc_cpblts * cpblts)
 {
 	struct nc_session* session;
@@ -730,6 +741,10 @@
 	}
 }
 
+/**
+ * @}
+ *//* netconf_operations */
+
 server_rec* clb_print_server;
 void clb_print(NC_VERB_LEVEL level, const char* msg)
 {