Diff for /Amaya/amaya/libwww.h between versions 1.18 and 1.19

version 1.18, 1998/09/21 04:58:37 version 1.19, 1999/01/29 13:54:21
Line 80  typedef struct _AHTReqContext Line 80  typedef struct _AHTReqContext
     HTMethod            method; /* What method are we envoking                  */      HTMethod            method; /* What method are we envoking                  */
     int                 docid;          /* docid to which this request belongs          */      int                 docid;          /* docid to which this request belongs          */
     AHTReqStatus        reqStatus;      /* status of the request                        */      AHTReqStatus        reqStatus;      /* status of the request                        */
     HTEventType             read_type;  /* The type operation which must be used during      HTEventType         read_type;      /* The type operation which must be used during
                                         ** an Xt read callback */                                          ** an Xt read callback */
           
     HTEventType             write_type; /* The type operation which must be used during      HTEventType         write_type;     /* The type operation which must be used during
                                         ** an Xt write callback */                                          ** an Xt write callback */
           
     HTEventType             except_type;        /* The type operation which must be used during      HTEventType         except_type;    /* The type operation which must be used during
                                                 ** an Xt exception callback */                                          ** an Xt exception callback */
           
 #ifdef WWW_XWINDOWS  #ifdef WWW_XWINDOWS
     XtInputId           read_xtinput_id;        /* The read xt event id assocciated with      XtInputId           read_xtinput_id;        /* The read xt event id assocciated with
Line 105  typedef struct _AHTReqContext Line 105  typedef struct _AHTReqContext
     /*** End of experimental stuff ****/      /*** End of experimental stuff ****/
           
     char               *outputfile;     /* file to receive incoming data         */      char               *outputfile;     /* file to receive incoming data         */
     FILE               *output; /* file pointer to outputfile            */      FILE               *output;         /* file pointer to outputfile            */
     int                 mode;   /* Mode of request: SYNC/ASYNC/IASYNC/FORM POST/FORM GET   */      int                 mode;           /* Mode of request: SYNC/ASYNC/IASYNC/FORM POST/FORM GET   */
     char               *urlName;        /* url to retrieve/or that was retrieved */      char               *urlName;        /* url to retrieve/or that was retrieved */
     char               status_urlName [MAX_LENGTH]; /* url name to be displayed on the status bar */      char               status_urlName [MAX_LENGTH]; /* url name to be displayed on the status bar */
     TIcbf              *incremental_cbf;        /* For IASYNC mode, @ of callback function */      TIcbf              *incremental_cbf;        /* For IASYNC mode, @ of callback function */
Line 123  typedef struct _AHTReqContext Line 123  typedef struct _AHTReqContext
     char               *content_type;      char               *content_type;
   
     /* The following elements are used for the PUT and POST */      /* The following elements are used for the PUT and POST */
       HTAnchor           *source;
     HTParentAnchor     *dest;   /* Destination for PUT etc.              */      HTAnchor           *dest;   /* Destination for PUT etc.              */
     unsigned long       block_size;     /* size in bytes of the file to put      */      unsigned long       block_size;      /* size in bytes of the file to put      */
     int                 put_counter;    /* number of bytes already put           */      int                 put_counter;     /* number of bytes already put           */
     HTAssocList        *formdata;        /* ptr to a struct containing the formdata used with POST */      HTAssocList        *formdata;        /* ptr to a struct containing the formdata used with POST */
   
      char               *error_stream;        /* pointer to an error message associated with the      char               *error_stream;      /* pointer to an error message associated with the
                                                  request */                                                request */
      int                 error_stream_size;   /* size of the above message */      int                 error_stream_size; /* size of the above message */
      boolean                error_html;       /* If TRUE, means the applications wants to display      boolean             error_html;        /* If TRUE, means the applications wants to display
                                                  error_stream. If false, error_stream is not                                                 error_stream. If false, error_stream is not 
                                                  displayed at all */                                                displayed at all */
   }    }
 AHTReqContext;  AHTReqContext;
   

Removed from v.1.18  
changed lines
  Added in v.1.19


Webmaster