From 26fb727d99172127ed8837dfd7ee6220c620326e Mon Sep 17 00:00:00 2001 From: m0gg Date: Wed, 3 Jan 2007 08:33:44 +0000 Subject: Documentation cleanup --- nanohttp/nanohttp-client.h | 8 ++++---- nanohttp/nanohttp-common.h | 4 ++-- nanohttp/nanohttp-mime.h | 6 +++--- nanohttp/nanohttp-request.h | 4 ++-- nanohttp/nanohttp-response.h | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/nanohttp/nanohttp-client.h b/nanohttp/nanohttp-client.h index d993c34..41c812a 100644 --- a/nanohttp/nanohttp-client.h +++ b/nanohttp/nanohttp-client.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-client.h,v 1.38 2007/01/01 18:58:05 m0gg Exp $ + * $Id: nanohttp-client.h,v 1.39 2007/01/03 08:33:44 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -108,8 +108,8 @@ * httpc_add_header(conn, "Cookie", "name2:value2"); * @endcode * - * Please see @ref general_header_fields and @ref request_header_fields for more - * information. + * Please see @ref http_general_header_fields and @ref http_request_header_fields + * for more information. * * @subsection nanohttp_client_authorization_sec HTTP authorization * @@ -172,7 +172,7 @@ * @section nanohttp_client_result_sec Fetch and print out the result * * @code - * while (http_input_stream_is_read(res->in)) + * while (http_input_stream_is_ready(res->in)) * { * len = http_input_stream_read(res->in, buffer, MAX_BUFFER_SIZE); * fwrite(buffer, len, 1, stdout); diff --git a/nanohttp/nanohttp-common.h b/nanohttp/nanohttp-common.h index 9011af5..1e3d042 100644 --- a/nanohttp/nanohttp-common.h +++ b/nanohttp/nanohttp-common.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-common.h,v 1.47 2006/12/13 08:36:53 m0gg Exp $ + * $Id: nanohttp-common.h,v 1.48 2007/01/03 08:33:44 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -28,7 +28,7 @@ #define HEADER_CONTENT_TRANSFER_ENCODING "Content-Transfer-Encoding" #define TRANSFER_ENCODING_CHUNKED "chunked" -/** @defgroup general_header_fields General Header Fields +/** @defgroup http_general_header_fields General Header Fields * * There are a few header fields which have general applicability for both * request and response messages, but which do not apply to the entity being diff --git a/nanohttp/nanohttp-mime.h b/nanohttp/nanohttp-mime.h index 44d846d..5ec1489 100755 --- a/nanohttp/nanohttp-mime.h +++ b/nanohttp/nanohttp-mime.h @@ -3,7 +3,7 @@ * | \/ | | | | \/ | | _/ * |_''_| |_| |_''_| |_'/ PARSER * -* $Id: nanohttp-mime.h,v 1.16 2007/01/01 23:23:16 m0gg Exp $ +* $Id: nanohttp-mime.h,v 1.17 2007/01/03 08:33:44 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -30,7 +30,7 @@ /** @page nanohttp_mime_page nanoHTTP MIME attachments * - * @section Table of contents + * @section nanohttp_mime_toc_sec Table of contents * * - @ref nanohttp_mime_client_sec * - @ref nanohttp_mime_client_init_sec @@ -74,7 +74,7 @@ * @subsection nanohttp_mime_server_cleanup_sec Server cleanup * * @author Ferhat Ayaz - * @version $Revision: 1.16 $ + * @version $Revision: 1.17 $ * * @see http://www.ietf.org/rfc/rfc2045.txt * @see http://www.ietf.org/rfc/rfc2046.txt diff --git a/nanohttp/nanohttp-request.h b/nanohttp/nanohttp-request.h index 739c3c9..95a89a0 100755 --- a/nanohttp/nanohttp-request.h +++ b/nanohttp/nanohttp-request.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-request.h,v 1.14 2006/12/11 08:13:19 m0gg Exp $ + * $Id: nanohttp-request.h,v 1.15 2007/01/03 08:33:44 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -24,7 +24,7 @@ #ifndef __nhttp_request_h #define __nhttp_request_h -/** @defgroup request_header_fields Request Header Fields +/** @defgroup http_request_header_fields Request Header Fields * * The request-header fields allow the client to pass additional information * about the request, and about the client itself, to the server. These fields diff --git a/nanohttp/nanohttp-response.h b/nanohttp/nanohttp-response.h index ce2984b..ddbee78 100755 --- a/nanohttp/nanohttp-response.h +++ b/nanohttp/nanohttp-response.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-response.h,v 1.14 2006/12/11 08:13:19 m0gg Exp $ + * $Id: nanohttp-response.h,v 1.15 2007/01/03 08:33:44 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -24,7 +24,7 @@ #ifndef __nanohttp_response_h #define __nanohttp_response_h -/** @defgroup response_header_fields Response Header Fields +/** @defgroup http_response_header_fields Response Header Fields * * The response-header fields allow the server to pass additional information * about the response which cannot be placed in the Status-Line. These header -- cgit v1.1-32-gdbae