View | Details | Raw Unified
Collapse All | Expand All

(-) wwwoffle-2.9-orig/src/proto.h (-3 / +3 lines)
 Lines 62-68    Link Here 
char /*@null@*/ /*@only@*/ *HTTP_Open(URL *Url);
char /*@null@*/ /*@only@*/ *HTTP_Open(URL *Url);
char /*@null@*/ /*@only@*/ *HTTP_Request(URL *Url,Header *request_head,Body *request_body);
char /*@null@*/ /*@only@*/ *HTTP_Request(URL *Url,Header *request_head,Body *request_body);
int   HTTP_ReadHead(/*@out@*/ Header **reply_head);
int   HTTP_ReadHead(/*@out@*/ Header **reply_head);
int   HTTP_ReadBody(char *s,size_t n);
ssize_t   HTTP_ReadBody(char *s,size_t n);
int   HTTP_Close(void);
int   HTTP_Close(void);
#if USE_GNUTLS
#if USE_GNUTLS
 Lines 82-88    Link Here 
char /*@null@*/ /*@only@*/ *FTP_Open(URL *Url);
char /*@null@*/ /*@only@*/ *FTP_Open(URL *Url);
char /*@null@*/ /*@only@*/ *FTP_Request(URL *Url,Header *request_head,Body *request_body);
char /*@null@*/ /*@only@*/ *FTP_Request(URL *Url,Header *request_head,Body *request_body);
int   FTP_ReadHead(/*@out@*/ Header **reply_head);
int   FTP_ReadHead(/*@out@*/ Header **reply_head);
int   FTP_ReadBody(char *s,size_t n);
ssize_t   FTP_ReadBody(char *s,size_t n);
int   FTP_Close(void);
int   FTP_Close(void);
/* In finger.c */
/* In finger.c */
 Lines 90-96    Link Here 
char /*@null@*/ /*@only@*/ *Finger_Open(URL *Url);
char /*@null@*/ /*@only@*/ *Finger_Open(URL *Url);
char /*@null@*/ /*@only@*/ *Finger_Request(URL *Url,Header *request_head,Body *request_body);
char /*@null@*/ /*@only@*/ *Finger_Request(URL *Url,Header *request_head,Body *request_body);
int   Finger_ReadHead(/*@out@*/ Header **reply_head);
int   Finger_ReadHead(/*@out@*/ Header **reply_head);
int   Finger_ReadBody(char *s,size_t n);
ssize_t   Finger_ReadBody(char *s,size_t n);
int   Finger_Close(void);
int   Finger_Close(void);
/* In ssl.c */
/* In ssl.c */
(-) wwwoffle-2.9-orig/src/wwwoffles.c (-1 / +1 lines)
 Lines 3026-3032    Link Here 
  This function is used as a callback from gifmodify.c and htmlmodify.l
  This function is used as a callback from gifmodify.c and htmlmodify.l
  ++++++++++++++++++++++++++++++++++++++*/
  ++++++++++++++++++++++++++++++++++++++*/
int wwwoffles_read_data(char *data,size_t len)
ssize_t wwwoffles_read_data(char *data,size_t len)
{
{
 if(modify_err==-1)
 if(modify_err==-1)
    return(0);
    return(0);