diff options
author | m0gg | 2007-11-04 06:57:31 +0000 |
---|---|---|
committer | m0gg | 2007-11-04 06:57:31 +0000 |
commit | 294374084a574ec74dfad51db494d102d4c3db27 (patch) | |
tree | c69995ed52234b61f4558967037d77f6bc480927 /nanohttp | |
parent | 8a6946b18003fae6400a137389f0cb13d0ac4bd6 (diff) | |
download | csoap-294374084a574ec74dfad51db494d102d4c3db27.tar.gz csoap-294374084a574ec74dfad51db494d102d4c3db27.tar.bz2 |
Moved project documentation from headers to doc/
Diffstat (limited to 'nanohttp')
-rw-r--r-- | nanohttp/nanohttp-admin.h | 4 | ||||
-rw-r--r-- | nanohttp/nanohttp-server.h | 35 | ||||
-rwxr-xr-x | nanohttp/nanohttp-stream.h | 4 |
3 files changed, 6 insertions, 37 deletions
diff --git a/nanohttp/nanohttp-admin.h b/nanohttp/nanohttp-admin.h index 0d90dcd..a12c2f1 100644 --- a/nanohttp/nanohttp-admin.h +++ b/nanohttp/nanohttp-admin.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-admin.h,v 1.7 2007/11/03 22:40:10 m0gg Exp $ + * $Id: nanohttp-admin.h,v 1.8 2007/11/04 06:57:32 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -31,7 +31,7 @@ */ /**@{*/ -/** @defgrup NANOHTTP_ADMIN_CMDLINE_FLAGS Command line flags +/** @defgroup NANOHTTP_ADMIN_CMDLINE_FLAGS Command line flags */ /**@{*/ /** Commandline argument to enabled the nanoHTTP admin interface. diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h index 8c5fc32..9d9f1d1 100644 --- a/nanohttp/nanohttp-server.h +++ b/nanohttp/nanohttp-server.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-server.h,v 1.39 2007/11/03 22:40:14 m0gg Exp $ + * $Id: nanohttp-server.h,v 1.40 2007/11/04 06:57:32 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -33,34 +33,6 @@ #include <nanohttp/nanohttp-response.h> #endif -/** - * @page nanohttp_page nanoHTTP - * - * @section nanohttp_sec nanoHTTP - * - * nanoHTTP is an embedded HTTP implementation. It comes with the following - * features: - * - written in ANSI C (compiles with gcc -ansi) - * - client/server HTTP engine - * - attachments via MIME (http://www.ietf.org/rfc/rfc2045.txt) - * - HTTP Basic Authentication (http://www.ietf.org/rfc/rfc2617.txt) - * - optional HTTPS support (SSL/TLS) using OpenSSL (http://www.openssl.org) - * - * @section links_sec Howto to use the nanoHTTP library - * - * - @subpage nanohttp_client_page - * - @subpage nanohttp_server_page - * - @subpage nanohttp_mime_page - * - @subpage nanohttp_ssl_page - * - * @author Ferhat Ayaz - * @author Michael Rans - * @author Matt Campbell - * @author Heiko Ronsdorf - * - * @version 1.2 - */ - /** @page nanohttp_server_page Howto write an HTTP server * * @section server_sec Table of contents @@ -367,10 +339,6 @@ extern void httpd_add_headers(httpd_conn_t * conn, const hpair_t * values); * * @todo move to nanohttp-mime.c merge with httpc_mime_* functions * - */ - -/** - * * MIME multipart/related POST * @returns H_OK on success or error flag * @@ -447,5 +415,6 @@ extern herror_t httpd_send_not_implemented(httpd_conn_t *conn, const char *msg); #endif /**@}*/ +/**@}*/ #endif diff --git a/nanohttp/nanohttp-stream.h b/nanohttp/nanohttp-stream.h index 40d415e..bb152ba 100755 --- a/nanohttp/nanohttp-stream.h +++ b/nanohttp/nanohttp-stream.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-stream.h,v 1.16 2007/11/03 22:40:15 m0gg Exp $ + * $Id: nanohttp-stream.h,v 1.17 2007/11/04 06:57:32 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -45,7 +45,7 @@ * be given while creating a stream. * * A stream will start sending/receiving data "after" sending/receiving header - * information. (After <CF><CF>)" + * information (After CR LF CR LF)." */ /**{@*/ |