• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H20-Sep-2021-5142

doc/H03-May-2022-9,6907,317

macros/H20-Sep-2021-2,6512,000

po/H03-May-2022-6,9325,445

src/H03-May-2022-28,49718,368

test/H03-May-2022-18,98213,483

.gitignoreH A D20-Sep-2021424 4039

.packageH A D20-Sep-202140 21

.release.shH A D20-Sep-2021826 3726

.travis.ymlH A D20-Sep-20211.3 KiB4543

.versionH A D20-Sep-20217 21

AUTHORSH A D20-Sep-2021468 98

BUGSH A D20-Sep-20211.6 KiB4834

ChangeLogH A D20-Sep-2021240 74

INSTALL.win32H A D20-Sep-20214.1 KiB13786

Makefile.inH A D03-May-20226.4 KiB221157

NEWSH A D03-May-202266.8 KiB1,3851,273

README.mdH A D20-Sep-20212.5 KiB6453

THANKSH A D20-Sep-20211,000 1715

TODOH A D20-Sep-20211.2 KiB3624

aclocal.m4H A D20-Sep-2021325 KiB9,1018,218

autogen.shH A D20-Sep-2021877 3023

config.guessH A D20-Sep-202142.9 KiB1,4631,270

config.h.inH A D20-Sep-202113.3 KiB519357

config.hwH A D20-Sep-20212.4 KiB9978

config.hw.inH A D20-Sep-20212.5 KiB9978

config.subH A D20-Sep-202135.5 KiB1,8241,686

configureH A D20-Sep-2021563.1 KiB20,15016,619

configure.acH A D20-Sep-20216.2 KiB214170

install-shH A D20-Sep-202114.3 KiB502327

ltmain.shH A D20-Sep-2021316.6 KiB11,1507,980

neon-config.inH A D20-Sep-20211.9 KiB11185

neon.makH A D20-Sep-20217.1 KiB260233

neon.pc.inH A D20-Sep-2021267 1210

README.md

1
2[![Travis CI Build Status](https://travis-ci.com/notroj/neon.svg?branch=master)](https://travis-ci.com/github/notroj/neon)
3[![Build and test](https://github.com/notroj/neon/actions/workflows/ci.yml/badge.svg)](https://github.com/notroj/neon/actions/workflows/ci.yml)
4
5# neon
6
7_neon_ is an HTTP and WebDAV client library, with a C language API.
8
9Mailing list: neon@lists.manyfish.co.uk || Web site: https://notroj.github.io/neon/
10
11The neon API and ABI are stable and maintain backwards compatibility
12from 0.27.x through 0.31.x.
13
14Features:
15
16 - High-level interface to HTTP and WebDAV methods.
17 - Low-level interface to HTTP request handling, to allow implementing
18   new methods easily.
19 - Persistent connection support (HTTP/1.1 and HTTP/1.0 aware)
20 - Basic and Digest authentication (RFC 7616/7617, including SHA-2, userhash)
21 - Kerberos (Negotiate) and SSPI/NTLM authentication (Unix and Windows)
22 - HTTP and SOCKS (v4/5) proxy support (including authentication)
23 - SSL/TLS support using OpenSSL or GnuTLS (client certs via files or PKCS#11)
24 - Generic WebDAV 207 XML response handling mechanism
25 - XML parsing using expat or libxml2
26 - Easy generation of error messages from 207 error responses
27 - Basic HTTP/1.1 methods: GET, PUT, HEAD, OPTIONS, conditional PUT
28 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
29 - WebDAV metadata support: set and remove properties (PROPPATCH), query
30   any set of properties (PROPFIND).
31 - WebDAV locking and ACL (RFC 3744) support
32 - Autoconf macros supplied for easily embedding neon directly inside
33   an application source tree.
34
35Provides lower-level interfaces to directly implement new HTTP
36methods, and higher-level interfaces so that you don't have to worry
37about the lower-level stuff.
38
39The neon library source code is licensed under the GNU Library GPL;
40see src/COPYING.LIB for full details.  The manual and test suite are
41licensed under the terms of the GNU GPL; see test/COPYING for terms.
42The autoconf macros in the "macros" directory are under a less
43restrictive license, see each file for details.
44
45~~~
46neon is Copyright (C) 1999-2021 Joe Orton
47Portions are:
48Copyright (C) Aleix Conchillo Flaque
49Copyright (C) Arfrever Frehtes Taifersar Arahesis
50Copyright (C) Arun Garg
51Copyright (C) Daniel Stenberg
52Copyright (C) Free Software Foundation, Inc.
53Copyright (C) Henrik Holst
54Copyright (C) Jiang Lei
55Copyright (C) Kai Sommerfeld
56Copyright (C) Karl Ove Hufthammer.
57Copyright (C) Michael Sobolev
58Copyright (C) Nobuyuki Tsuchimura
59Copyright (C) Sylvain Glaize
60Copyright (C) Thomas Schultz
61Copyright (C) Vladimir Berezniker
62Copyright (C) Yves Martin
63~~~
64