neon 0.28.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News neon 0.28.1 (Default branch)
# 1  
Old 03-10-2008
neon 0.28.1 (Default branch)

neon is an HTTP and WebDAV client library for Unix systems, with a C language API. It provides high-level interfaces to HTTP/1.1 and WebDAV methods, and a low-level interface to HTTP request/response handling, allowing new methods to be easily implemented. License: GNU Lesser General Public License (LGPL) Changes:
This release fixes an issue in the new Digest domain parameter handling, and corrects some build issues.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Install neon-0.26.3. on a OpenBSD server

Hello, I'm a very basic beginning user of OpenBSD. I'd like to install neon-0.26.3. I placed it on our server but I don't know how to install it. The directory has the following contain: # ls .package AUTHORS ChangeLog.CVS NEWS TODO ... (1 Reply)
Discussion started by: syddy
1 Replies
Login or Register to Ask a Question
NE_SET_SESSION_FLAG(3)						neon API reference					    NE_SET_SESSION_FLAG(3)

NAME
ne_set_session_flag, ne_get_session_flag - set and retrieve session flags SYNOPSIS
#include <ne_request.h> void ne_set_session_flag(ne_session *sess, ne_session_flag flag, int value); int ne_get_session_flag(ne_session *sess, ne_session_flag flag); DESCRIPTION
The ne_set_session_flag function enables or disables a session flag. Passing a non-zero value argument enables the flag, and zero disables it. The following flags are defined: NE_SESSFLAG_PERSIST disable this flag to prevent use of persistent connections NE_SESSFLAG_ICYPROTO enable this flag to enable support for non-HTTP ShoutCast-style "ICY" responses NE_SESSFLAG_SSLv2 disable this flag to disable support for the SSLv2 protocol NE_SESSFLAG_RFC4918 enable this flag to enable support for RFC4918-only WebDAV features; losing backwards-compatibility with RFC2518 servers NE_SESSFLAG_CONNAUTH enable this flag if an RFC-violating connection-based HTTP authentication scheme is in use NE_SESSFLAG_TLS_SNI disable this flag if a server is used which does not correctly support the TLS SNI extension RETURN VALUE
The ne_get_session_flag function returns zero if a flag is disabled, less than zero if the flag is not supported, or greater than zero if the flag is enabled. SEE ALSO
ne_session_create. AUTHOR
Joe Orton <neon@lists.manyfish.co.uk> Author. COPYRIGHT
neon 0.28.4 25 February 2009 NE_SET_SESSION_FLAG(3)