From: Pekka Riikonen Date: Sat, 16 Sep 2006 10:36:07 +0000 (+0000) Subject: updates. X-Git-Tag: silc.client.1.1.beta1~275 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=1e8bf2786858de31e496ab07cbd27c865f361372 updates. --- diff --git a/lib/silchttp/silchttpserver.h b/lib/silchttp/silchttpserver.h index a82b13f2..a26f0513 100644 --- a/lib/silchttp/silchttpserver.h +++ b/lib/silchttp/silchttpserver.h @@ -31,7 +31,34 @@ #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