Update to 0.25.4:

Changes in release 0.25.4:
* GSSAPI fixes for non-MIT implementations (Mikhail Teterin).
* Fix ne_print_request_header() et al to use 8K buffer size on all
 platforms (fixes issue with long Destination: URLs on Win32).
* Win32 build fix for !USE_GETADDRINFO configuration.
* Documentation updates.

Changes in release 0.25.3:
* ne_lock() and ne_unlock(): fix cases where NE_ERROR would be returned
  instead of e.g. NE_AUTH on auth failure.
* Prevent use of poll() on Darwin.
* Fix gethostbyname-based resolver on LP64 platforms (Matthew Sanderson).

Changes in release 0.25.2:
* Really fix the Win32 build.

Changes in release 0.25.1:
* ne_get_content_type(): fix cases where the charset field was not set
  to NULL after successful return (Johannes Schneider)
* Compressed response handling fixes:
 - fix double invocation of reader callback with len=0
 - fix cases where the reader callback return value was ignored
* Cache the new SSL session if the old one was expired (Robert Eiglmaier)
* Win32: fix build issues.

Changes in release 0.25.0:
* New interfaces:
 - ne_get_response_header() replaces ne_add_response_header_handler
 - ne_read_response_to_fd() and ne_discard_response() for use with
   ne_begin_request/ne_end_request style response handling
 - ne_xmlreq.h: ne_xml_parse_response() and ne_xml_dispatch_request()
 - ne_has_support() for feature detection, replaces ne_support_ssl()
 - ne_set_addrlist() can be used to bypass normal DNS hostname resolver
 - ne_buffer_czappend(), convenience wrapper for ne_buffer_append.
 - ne_iaddr_typeof() returns type of a socket object
 - ne_get_content_type() replaces ne_content_type_handler()
 - ne_set_request_expect100() replaces ne_set_expect100()
* New interfaces on LFS systems for large file support:
 - ne_set_request_body_fd64() call for using an fd opened using O_LARGEFILE
 - ne_set_request_body_provider64(), takes an off64_t length argument
* Interface changes:
 - ne_set_request_body_fd takes offset and length arguments and returns void
 - ne_set_request_body_provider takes length as off_t rather than size_t;
   provider callbacks now MUST set session error string if returning an error
 - response body reader callback returns an integer and can abort the response
 - ne_decompress_destroy() returns void; errors are caught earlier
 - ne_xml_failed() replaces ne_xml_valid(), with different return value logic
 - ne_xml_parse() can return an error; ne_xml_parse_v() aborts the response if
   the parse either fails or is aborted by a handler returning NE_XML_ABORT
 - ne_path_escape() now escapes all but unreserved characters
 - ne_ssl_clicert_name() and ne_ssl_cert_identity() clarified to return UTF-8
 - ne_ssl_clicert_name() clicert object argument is now const
 - ne_uri_parse()/ne_uri_free() memory handling clarified
 - removed the buffer length requirement for ne_read_response_block()
* Bug fixes:
 - properly handle multiple Authentication challenges per request
 - fixes and improvements to the Negotiate auth implementation
 - handle proxies which send a 401 auth challenge to a CONNECT request
 - XML: handle the UTF-8 BOM even if the underlying parser does not
 - Win32: Fix timezone handling (Jiang Lei)
 - ne_lock_refresh() works and will update timeout of passed-in lock
 - persistent connection timeout handling fixes for CygWin et al
 - impose hard limit of 1024 props per resource in ne_props.h response parsing
* New platform-specific features:
 - Win32: Negotiate/NTLM support using SSPI (Vladimir Berezniker)
 - Win32: Add IPv6 support using ENABLE_IPV6 neon.mak flag (Kai Sommerfeld)
* Removed features:
 - the cookies interface has been removed
 - removed functions: ne_service_lookup(), ne_put_if_unmodified()
 - "qop=auth-int" support removed from Digest auth implementation
* Default XML parser search changed to check for expat before libxml2.
This commit is contained in:
epg 2006-01-02 21:01:59 +00:00
parent 7faa4f7b7a
commit 492a424d50
3 changed files with 19 additions and 10 deletions

View file

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.30 2005/09/28 12:32:26 rillig Exp $
# $NetBSD: Makefile,v 1.31 2006/01/02 21:01:59 epg Exp $
DISTNAME= neon-0.24.7
PKGREVISION= 1
DISTNAME= neon-0.25.4
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/neon/

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.14 2004/09/22 08:09:57 jlam Exp $
@comment $NetBSD: PLIST,v 1.15 2006/01/02 21:01:59 epg Exp $
bin/neon-config
include/neon/ne_207.h
include/neon/ne_acl.h
@ -6,7 +6,6 @@ include/neon/ne_alloc.h
include/neon/ne_auth.h
include/neon/ne_basic.h
include/neon/ne_compress.h
include/neon/ne_cookies.h
include/neon/ne_dates.h
include/neon/ne_defs.h
include/neon/ne_i18n.h
@ -22,6 +21,7 @@ include/neon/ne_string.h
include/neon/ne_uri.h
include/neon/ne_utils.h
include/neon/ne_xml.h
include/neon/ne_xmlreq.h
lib/libneon.la
lib/pkgconfig/neon.pc
man/man1/neon-config.1
@ -47,11 +47,15 @@ man/man3/ne_calloc.3
man/man3/ne_close_connection.3
man/man3/ne_forget_auth.3
man/man3/ne_get_error.3
man/man3/ne_get_response_header.3
man/man3/ne_get_scheme.3
man/man3/ne_get_server_hostport.3
man/man3/ne_get_status.3
man/man3/ne_iaddr_cmp.3
man/man3/ne_iaddr_free.3
man/man3/ne_iaddr_make.3
man/man3/ne_iaddr_print.3
man/man3/ne_iaddr_typeof.3
man/man3/ne_malloc.3
man/man3/ne_oom_callback.3
man/man3/ne_print_request_header.3
@ -60,16 +64,17 @@ man/man3/ne_realloc.3
man/man3/ne_request_create.3
man/man3/ne_request_destroy.3
man/man3/ne_request_dispatch.3
man/man3/ne_response_header_iterate.3
man/man3/ne_session_create.3
man/man3/ne_session_destroy.3
man/man3/ne_session_proxy.3
man/man3/ne_set_error.3
man/man3/ne_set_expect100.3
man/man3/ne_set_persist.3
man/man3/ne_set_proxy_auth.3
man/man3/ne_set_read_timeout.3
man/man3/ne_set_request_body_buffer.3
man/man3/ne_set_request_body_fd.3
man/man3/ne_set_request_expect100.3
man/man3/ne_set_server_auth.3
man/man3/ne_set_useragent.3
man/man3/ne_shave.3
@ -101,6 +106,8 @@ man/man3/ne_strndup.3
man/man3/ne_token.3
man/man3/ne_version_match.3
man/man3/ne_version_string.3
man/man3/ne_xml_create.3
man/man3/ne_xml_destroy.3
man/man3/neon.3
share/doc/${PKGNAME}/html/apas01.html
share/doc/${PKGNAME}/html/apas02.html
@ -140,7 +147,9 @@ share/doc/${PKGNAME}/html/refopts.html
share/doc/${PKGNAME}/html/refreq.html
share/doc/${PKGNAME}/html/refreqbody.html
share/doc/${PKGNAME}/html/refreqhdr.html
share/doc/${PKGNAME}/html/refreqopts.html
share/doc/${PKGNAME}/html/refresolve.html
share/doc/${PKGNAME}/html/refresphdr.html
share/doc/${PKGNAME}/html/refsess.html
share/doc/${PKGNAME}/html/refshave.html
share/doc/${PKGNAME}/html/refsockinit.html
@ -152,6 +161,7 @@ share/doc/${PKGNAME}/html/refsslvfy.html
share/doc/${PKGNAME}/html/refstatus.html
share/doc/${PKGNAME}/html/reftok.html
share/doc/${PKGNAME}/html/refvers.html
share/doc/${PKGNAME}/html/refxml.html
share/doc/${PKGNAME}/html/using.html
share/doc/${PKGNAME}/html/xml.html
@dirrm share/doc/${PKGNAME}/html

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.14 2005/02/24 14:08:34 wiz Exp $
$NetBSD: distinfo,v 1.15 2006/01/02 21:01:59 epg Exp $
SHA1 (neon-0.24.7.tar.gz) = 51e556790c79eed99ba8328e79eb7fe996cc34ea
RMD160 (neon-0.24.7.tar.gz) = 5977515bf3bfb098d9996a62cc94c13d2229e835
Size (neon-0.24.7.tar.gz) = 603592 bytes
SHA1 (neon-0.25.4.tar.gz) = 53e60b7f0c2934c59da5e52b93e5673a93eb1791
RMD160 (neon-0.25.4.tar.gz) = 33b674bfa0747da6142441f5405890d4fa00a397
Size (neon-0.25.4.tar.gz) = 734424 bytes