47 void *R_HTTPOpen(
const char *url);
48 int R_HTTPRead(
void *ctx,
char *dest,
int len);
49 void R_HTTPClose(
void *ctx);
51 void *R_FTPOpen(
const char *url);
52 int R_FTPRead(
void *ctx,
char *dest,
int len);
53 void R_FTPClose(
void *ctx);
55 void * RxmlNanoHTTPOpen(
const char *URL,
char **contentType,
const char *headers,
int cacheOK);
56 int RxmlNanoHTTPRead(
void *ctx,
void *dest,
int len);
57 void RxmlNanoHTTPClose(
void *ctx);
58 int RxmlNanoHTTPReturnCode(
void *ctx);
59 char * RxmlNanoHTTPStatusMsg(
void *ctx);
60 int RxmlNanoHTTPContentLength(
void *ctx);
61 char * RxmlNanoHTTPContentType(
void *ctx);
62 void RxmlNanoHTTPTimeout(
int delay);
64 void * RxmlNanoFTPOpen(
const char *URL);
65 int RxmlNanoFTPRead(
void *ctx,
void *dest,
int len);
66 int RxmlNanoFTPClose(
void *ctx);
67 void RxmlNanoFTPTimeout(
int delay);
68 int RxmlNanoFTPContentLength(
void *ctx);
70 void RxmlMessage(
int level,
const char *format, ...);
74 void RxmlNanoFTPCleanup(
void);
75 void RxmlNanoHTTPCleanup(
void);