updates.
authorPekka Riikonen <priikone@silcnet.org>
Sat, 16 Sep 2006 10:36:07 +0000 (10:36 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Sat, 16 Sep 2006 10:36:07 +0000 (10:36 +0000)
lib/silchttp/silchttpserver.h

index a82b13f27b374fd9b9b2c3a6747c08536dba48a9..a26f05133389f0ede89d55a6b1dfe7682ad16305 100644 (file)
 #ifndef SILCHTTPSERVER_H
 #define SILCHTTPSERVER_H
 
+/****s* silchttp/SilcHTTPServer/SilcHttpServer
+ *
+ * NAME
+ *
+ *    typedef struct SilcHttpServerStruct *SilcHttpServer;
+ *
+ * DESCRIPTION
+ *
+ *    The actual HTTP server allocated with silc_http_server_alloc and
+ *    freed with silc_http_server_free.
+ *
+ ***/
 typedef struct SilcHttpServerStruct *SilcHttpServer;
+
+/****s* silchttp/SilcHTTPServer/SilcHttpConnection
+ *
+ * NAME
+ *
+ *    typedef struct SilcHttpConnectionStruct *SilcHttpConnection;
+ *
+ * DESCRIPTION
+ *
+ *    HTTP connection context.  This is allocated by the library and
+ *    delivered to application in SilcHttpServerCallback callbcak function.
+ *    It is given as argument to many silc_http_server_* functions.
+ *    It is freed automatically by the library.
+ *
+ ***/
 typedef struct SilcHttpConnectionStruct *SilcHttpConnection;
 
 /****f* silchttp/SilcHTTPServer/SilcHttpServerCallback