summaryrefslogtreecommitdiffstats
path: root/nanohttp/nanohttp-client.h
diff options
context:
space:
mode:
authorGravatar m0gg2007-01-03 08:33:44 +0000
committerGravatar m0gg2007-01-03 08:33:44 +0000
commit26fb727d99172127ed8837dfd7ee6220c620326e (patch)
tree34da956329270096abba467707df5cbabdc48079 /nanohttp/nanohttp-client.h
parentc2a1e6e2626b7c37bcbbf8748bb6c21fa0c31ef3 (diff)
downloadcsoap-26fb727d99172127ed8837dfd7ee6220c620326e.tar.gz
csoap-26fb727d99172127ed8837dfd7ee6220c620326e.tar.bz2
Documentation cleanup
Diffstat (limited to 'nanohttp/nanohttp-client.h')
-rw-r--r--nanohttp/nanohttp-client.h8
1 files changed, 4 insertions, 4 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);