From joe at manyfish.co.uk Thu Mar 11 05:03:44 2010 From: joe at manyfish.co.uk (joe at manyfish.co.uk) Date: Thu, 11 Mar 2010 02:03:44 -0800 (PST) Subject: commit: r1792 - neon/trunk/src Message-ID: <20100311100344.1BE1B6A037@maintain-dev1.osuosl.org> Author: joe Date: Thu Mar 11 02:03:38 2010 New Revision: 1792 Modified: neon/trunk/src/ne_request.c Log: * src/ne_request.c (do_connect): Tweak debugging. Modified: neon/trunk/src/ne_request.c ============================================================================== --- neon/trunk/src/ne_request.c (original) +++ neon/trunk/src/ne_request.c Thu Mar 11 02:03:38 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); From joe at manyfish.co.uk Thu Mar 25 03:57:37 2010 From: joe at manyfish.co.uk (joe at manyfish.co.uk) Date: Thu, 25 Mar 2010 00:57:37 -0700 (PDT) Subject: commit: r1793 - neon/trunk/doc/ref Message-ID: <20100325075737.252E042901@maintain-dev1.osuosl.org> Author: joe Date: Thu Mar 25 00:57:36 2010 New Revision: 1793 Modified: neon/trunk/doc/ref/bufcr.xml neon/trunk/doc/ref/bufutil.xml Log: * doc/ref/: Fix some refpurposes. Modified: neon/trunk/doc/ref/bufcr.xml ============================================================================== --- neon/trunk/doc/ref/bufcr.xml (original) +++ neon/trunk/doc/ref/bufcr.xml Thu Mar 25 00:57:36 2010 @@ -8,7 +8,7 @@ ne_buffer_create ne_buffer_ncreate - general purpose of group of functions + create a string buffer Modified: neon/trunk/doc/ref/bufutil.xml ============================================================================== --- neon/trunk/doc/ref/bufutil.xml (original) +++ neon/trunk/doc/ref/bufutil.xml Thu Mar 25 00:57:36 2010 @@ -9,7 +9,7 @@ ne_buffer_clear ne_buffer_grow ne_buffer_altered - general purpose of group of functions + clear, grow, or mark as altered a string buffer From joe at manyfish.co.uk Mon Mar 29 04:49:57 2010 From: joe at manyfish.co.uk (joe at manyfish.co.uk) Date: Mon, 29 Mar 2010 01:49:57 -0700 (PDT) Subject: commit: r1794 - neon/trunk/src Message-ID: <20100329084957.8A371613C9@maintain-dev1.osuosl.org> Author: joe Date: Mon Mar 29 08:49:56 2010 New Revision: 1794 Modified: neon/trunk/src/ne_session.c Log: * src/ne_session.c (ne_session_create): Fix to enable SNI by default again. (Tobias Gruetzmacher) Modified: neon/trunk/src/ne_session.c ============================================================================== --- neon/trunk/src/ne_session.c (original) +++ neon/trunk/src/ne_session.c Mon Mar 29 08:49:56 2010 @@ -183,8 +183,10 @@ ia = ne_iaddr_parse(hostname, ne_iaddr_ipv6); if (ia) { - sess->flags[NE_SESSFLAG_TLS_SNI] = 1; ne_iaddr_free(ia); + } + else { + sess->flags[NE_SESSFLAG_TLS_SNI] = 1; } NE_DEBUG(NE_DBG_SSL, "ssl: SNI %s by default.\n", sess->flags[NE_SESSFLAG_TLS_SNI] ? From joe at manyfish.co.uk Mon Mar 29 05:14:16 2010 From: joe at manyfish.co.uk (joe at manyfish.co.uk) Date: Mon, 29 Mar 2010 02:14:16 -0700 (PDT) Subject: commit: r1795 - neon/trunk/doc/ref Message-ID: <20100329091416.325C2613C9@maintain-dev1.osuosl.org> Author: joe Date: Mon Mar 29 09:14:16 2010 New Revision: 1795 Modified: neon/trunk/doc/ref/reqflags.xml Log: * doc/ref/reqflags.xml: Doc tweak. Modified: neon/trunk/doc/ref/reqflags.xml ============================================================================== --- neon/trunk/doc/ref/reqflags.xml (original) +++ neon/trunk/doc/ref/reqflags.xml Mon Mar 29 09:14:16 2010 @@ -48,8 +48,13 @@ NE_REQFLAG_EXPECT100 - enables this flag to use the "Expect: - 100-continue" feature of HTTP/1.1 + 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. From joe at manyfish.co.uk Mon Mar 29 05:19:05 2010 From: joe at manyfish.co.uk (joe at manyfish.co.uk) Date: Mon, 29 Mar 2010 02:19:05 -0700 (PDT) Subject: commit: r1796 - in neon/branches/0.29.x: doc/ref src Message-ID: <20100329091905.0ECA4613C9@maintain-dev1.osuosl.org> 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 @@ ne_buffer_create ne_buffer_ncreate - general purpose of group of functions + create a string buffer 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 @@ ne_buffer_clear ne_buffer_grow ne_buffer_altered - general purpose of group of functions + clear, grow, or mark as altered a string buffer 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 @@ NE_REQFLAG_EXPECT100 - enables this flag to use the "Expect: - 100-continue" feature of HTTP/1.1 + 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. 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);