commit: r1796 - in neon/branches/0.29.x: doc/ref src
joe at manyfish.co.uk
joe at manyfish.co.uk
Mon Mar 29 05:19:05 EDT 2010
Author: joe
Date: Mon Mar 29 09:19:04 2010
New Revision: 1796
Modified:
neon/branches/0.29.x/doc/ref/bufcr.xml
neon/branches/0.29.x/doc/ref/bufutil.xml
neon/branches/0.29.x/doc/ref/reqflags.xml
neon/branches/0.29.x/src/ne_request.c
Log:
Merge r1792, r1793, r1795 from trunk:
* src/ne_request.c (do_connect): Tweak debugging.
* doc/ref/: Fix some refpurposes.
* doc/ref/reqflags.xml: Doc tweak.
Modified: neon/branches/0.29.x/doc/ref/bufcr.xml
==============================================================================
--- neon/branches/0.29.x/doc/ref/bufcr.xml (original)
+++ neon/branches/0.29.x/doc/ref/bufcr.xml Mon Mar 29 09:19:04 2010
@@ -8,7 +8,7 @@
<refnamediv>
<refname id="ne_buffer_create">ne_buffer_create</refname>
<refname id="ne_buffer_create_sized">ne_buffer_ncreate</refname>
- <refpurpose>general purpose of group of functions</refpurpose>
+ <refpurpose>create a string buffer</refpurpose>
</refnamediv>
<refsynopsisdiv>
Modified: neon/branches/0.29.x/doc/ref/bufutil.xml
==============================================================================
--- neon/branches/0.29.x/doc/ref/bufutil.xml (original)
+++ neon/branches/0.29.x/doc/ref/bufutil.xml Mon Mar 29 09:19:04 2010
@@ -9,7 +9,7 @@
<refname id="ne_buffer_clear">ne_buffer_clear</refname>
<refname id="ne_buffer_grow">ne_buffer_grow</refname>
<refname id="ne_buffer_altered">ne_buffer_altered</refname>
- <refpurpose>general purpose of group of functions</refpurpose>
+ <refpurpose>clear, grow, or mark as altered a string buffer</refpurpose>
</refnamediv>
<refsynopsisdiv>
Modified: neon/branches/0.29.x/doc/ref/reqflags.xml
==============================================================================
--- neon/branches/0.29.x/doc/ref/reqflags.xml (original)
+++ neon/branches/0.29.x/doc/ref/reqflags.xml Mon Mar 29 09:19:04 2010
@@ -48,8 +48,13 @@
<varlistentry>
<term><constant>NE_REQFLAG_EXPECT100</constant></term>
<listitem>
- <simpara>enables this flag to use the "Expect:
- 100-continue" feature of HTTP/1.1</simpara>
+ <simpara>enable this flag to use the "Expect:
+ 100-continue" feature of HTTP/1.1, which allows the
+ server to process request headers without reading the
+ entire request body. This saves time and bandwidth if
+ the server gives an authentication challenge (requiring
+ the request to be resent), but has interoperability
+ problems with some older servers.</simpara>
</listitem>
</varlistentry>
<varlistentry>
Modified: neon/branches/0.29.x/src/ne_request.c
==============================================================================
--- neon/branches/0.29.x/src/ne_request.c (original)
+++ neon/branches/0.29.x/src/ne_request.c Mon Mar 29 09:19:04 2010
@@ -1481,8 +1481,9 @@
#ifdef NE_DEBUGGING
if (ne_debug_mask & NE_DBG_HTTP) {
char buf[150];
- NE_DEBUG(NE_DBG_HTTP, "Connecting to %s\n",
- ne_iaddr_print(host->current, buf, sizeof buf));
+ NE_DEBUG(NE_DBG_HTTP, "req: Connecting to %s:%u\n",
+ ne_iaddr_print(host->current, buf, sizeof buf),
+ host->port);
}
#endif
ret = ne_sock_connect(sess->socket, host->current, host->port);
More information about the neon-commits
mailing list