lm_connection.c
changeset 4 5770be2d5f3f
parent 1 64a857d6b81b
child 6 90073cbb535d
--- a/lm_connection.c	Mon Feb 09 13:39:36 2009 +0200
+++ b/lm_connection.c	Sat Feb 14 16:40:09 2009 +0200
@@ -16,7 +16,7 @@
 
 /// connection state
 /// Stirng, representing current connection state.
-/// V: closed, opening, open, authenticating, authenticated
+/// G:
 const string2enum_t llm_connection_state[] = {
 	{ "closed",         LM_CONNECTION_STATE_CLOSED         },
 	{ "opening",        LM_CONNECTION_STATE_OPENING        },
@@ -29,7 +29,7 @@
 /// handler priority
 /// String, according to which handler will be placed into one
 /// of three handler groups.
-/// V: last, normal, first
+/// G:
 const string2enum_t llm_handler_priority[] = {
 	{ "last",   LM_HANDLER_PRIORITY_LAST   },
 	{ "normal", LM_HANDLER_PRIORITY_NORMAL },
@@ -39,8 +39,8 @@
 
 /// disconnect reason
 /// String, indicating the reason of disconnection occured.
-/// V: ok, ping time out, hup, error, resource conflict, invalid xml, unknown, ping_time_out, resource_conflict, invalid_xml
-const string2enum_t llm_disconnect_reason[] = {
+/// G:
+static const string2enum_t llm_disconnect_reason[] = {
 	{ "ok",                LM_DISCONNECT_REASON_OK                },
 	{ "ping time out",     LM_DISCONNECT_REASON_PING_TIME_OUT     },
 	{ "hup",               LM_DISCONNECT_REASON_HUP               },