X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fwebcit.h;h=36f47acf72582bb5f6261ad1f240fd98eb641f1b;hb=2dd0ef8fe2953cbdec20f4dcd016c93f12117fad;hp=4d5f51c56c124b0bb95eae83aa851f221b41d924;hpb=7dd36f04246952793553284d8cf56c240d6791c3;p=citadel.git diff --git a/webcit-ng/webcit.h b/webcit-ng/webcit.h index 4d5f51c56..36f47acf7 100644 --- a/webcit-ng/webcit.h +++ b/webcit-ng/webcit.h @@ -135,6 +135,7 @@ int uds_connectsock(char *sockpath); int tcp_connectsock(char *host, char *service); void ctdl_a(struct http_transaction *, struct ctdlsession *); void ctdl_r(struct http_transaction *, struct ctdlsession *); +void ctdl_u(struct http_transaction *, struct ctdlsession *); struct ctdlsession *connect_to_citadel(struct http_transaction *); void disconnect_from_citadel(struct ctdlsession *); char *header_val(struct http_transaction *h, char *requested_header); @@ -156,6 +157,7 @@ void download_mime_component(struct http_transaction *h, struct ctdlsession *c, StrBuf *text2html(const char *supplied_charset, int treat_as_wiki, char *roomname, long msgnum, StrBuf *Source); StrBuf *variformat2html(StrBuf *Source); int ctdl_readline(struct ctdlsession *ctdl, char *buf, int maxbytes); +int ctdl_read_binary(struct ctdlsession *ctdl, char *buf, int bytes_requested); void ctdl_c(struct http_transaction *h, struct ctdlsession *c); int webserver(char *webserver_interface, int webserver_port, int webserver_protocol); void ctdl_printf(struct ctdlsession *ctdl, const char *format,...);