Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ne_version_string(3) [redhat man page]

NE_VERSION_MATCH(3)						neon API reference					       NE_VERSION_MATCH(3)

NAME
ne_version_match, ne_version_string - library versioning SYNOPSIS
#include <ne_utils.h> int ne_version_match (int major, int minor); const char *ne_version_string (void); DESCRIPTION
The ne_version_match function returns non-zero if the library version is not of major version major, or the minor version is less than mi- nor. The ne_version_string function returns a string giving the library version. EXAMPLES
To require neon 1.x, version 1.2 or later: if (ne_version_match(1, 2)) { printf("Library version out of date: 1.2 required, found %s.", ne_version_string()); exit(1); } AUTHOR
Joe Orton <neon@webdav.org>. neon 0.23.5 8 October 2002 NE_VERSION_MATCH(3)

Check Out this Related Man Page

NEON(3) 							neon API reference							   NEON(3)

NAME
neon - HTTP and WebDAV client library DESCRIPTION
neon is an HTTP and WebDAV client library. The major abstractions exposed are the HTTP session, created by ne_session_create(3); and the HTTP request, created by ne_request_create(3). HTTP authentication is handled transparently for server and proxy servers, see ne_set_server_auth(3); complete SSL/TLS support is also included, see ne_ssl_set_verify(3). CONVENTIONS
Some conventions are used throughout the neon API, to provide a consistent and simple interface; these are documented below. Thread-safeness and global initialization neon itself is implemented to be thread-safe (avoiding any use of global state), but in some configurations makes use of other libraries which require global initialization. The ne_sock_init(3) function should be called before any other use of the neon library interface. Namespaces The neon header files reserve the use of the prefixes ne_ and NE_. URI paths, WebDAV metadata The path strings passed to any function must be URI-encoded by the application: neon never performs any URI encoding or decoding automati- cally. WebDAV property names and values must be used un UTF-8. Memory handling neon does not attempt to cope gracefully with an out-of-memory situation; instead, by default, abort is called to terminate the applica- tion. Optionally an application-provided function be called before abort; see ne_oom_callback(3). Callbacks and userdata Whenever a callback is registered, a userdata variable is also used to allow the application to associate a context with the callback. The userdata is of type void *, allowing any pointer to be used. SEE ALSO
ne_session_create(3), ne_oom_callback(3) AUTHOR
Joe Orton <neon@webdav.org>. neon 0.23.5 8 October 2002 NEON(3)
Man Page