From 35a201cc8ef0c3f5b2df88d2e528aabee1048348 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 30 Apr 2021 18:47:09 +0200 Subject: Initial/Final commit --- libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html | 142 +++++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html (limited to 'libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html') diff --git a/libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html b/libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html new file mode 100644 index 0000000..075ae48 --- /dev/null +++ b/libxml2-2.9.10/doc/devhelp/libxml2-nanohttp.html @@ -0,0 +1,142 @@ + + + + + nanohttp: minimal HTTP implementation + + + + + + + + + + + + + + + + +

+ nanohttp +

+

nanohttp - minimal HTTP implementation

+

minimal HTTP implementation allowing to fetch resources like external subset.

+

Author(s): Daniel Veillard

+
+

Synopsis

+
int	xmlNanoHTTPRead			(void * ctx, 
void * dest,
int len); +int xmlNanoHTTPSave (void * ctxt,
const char * filename); +const char * xmlNanoHTTPRedir (void * ctx); +const char * xmlNanoHTTPAuthHeader (void * ctx); +int xmlNanoHTTPFetch (const char * URL,
const char * filename,
char ** contentType); +int xmlNanoHTTPContentLength (void * ctx); +const char * xmlNanoHTTPMimeType (void * ctx); +void xmlNanoHTTPClose (void * ctx); +void xmlNanoHTTPCleanup (void); +void * xmlNanoHTTPMethod (const char * URL,
const char * method,
const char * input,
char ** contentType,
const char * headers,
int ilen); +void xmlNanoHTTPInit (void); +void * xmlNanoHTTPOpen (const char * URL,
char ** contentType); +void * xmlNanoHTTPOpenRedir (const char * URL,
char ** contentType,
char ** redir); +void * xmlNanoHTTPMethodRedir (const char * URL,
const char * method,
const char * input,
char ** contentType,
char ** redir,
const char * headers,
int ilen); +void xmlNanoHTTPScanProxy (const char * URL); +const char * xmlNanoHTTPEncoding (void * ctx); +int xmlNanoHTTPReturnCode (void * ctx); +
+
+
+

Description

+
+
+

Details

+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + -- cgit v1.2.3