mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
20 lines
791 B
C
20 lines
791 B
C
/* Declarations of WARC helper methods. */
|
|
#ifndef WARC_H
|
|
#define WARC_H
|
|
|
|
#include "host.h"
|
|
|
|
void warc_init ();
|
|
void warc_close ();
|
|
void warc_timestamp (char *timestamp);
|
|
void warc_uuid_str (char *id_str);
|
|
|
|
FILE * warc_tempfile ();
|
|
|
|
bool warc_write_request_record (char *url, char *timestamp_str, char *concurrent_to_uuid, ip_address *ip, FILE *body, long int payload_offset);
|
|
bool warc_write_response_record (char *url, char *timestamp_str, char *concurrent_to_uuid, ip_address *ip, FILE *body, long int payload_offset, char *mime_type, int response_code, char *redirect_location);
|
|
bool warc_write_resource_record (char *resource_uuid, char *url, char *timestamp_str, char *concurrent_to_uuid, ip_address *ip, char *content_type, FILE *body, long int payload_offset);
|
|
|
|
#endif /* WARC_H */
|
|
|