mirror of
https://github.com/mirror/wget.git
synced 2025-02-05 09:10:12 +08:00
24 lines
827 B
C
24 lines
827 B
C
/* Declarations of WARC helper methods. */
|
|
#ifndef WARC_H
|
|
#define WARC_H
|
|
|
|
#include "host.h"
|
|
|
|
void warc_init (void);
|
|
void warc_close (void);
|
|
void warc_timestamp (char *timestamp);
|
|
void warc_uuid_str (char *id_str);
|
|
|
|
FILE * warc_tempfile (void);
|
|
|
|
bool warc_write_request_record (char *url, char *timestamp_str,
|
|
char *concurrent_to_uuid, ip_address *ip, FILE *body, off_t payload_offset);
|
|
bool warc_write_response_record (char *url, char *timestamp_str,
|
|
char *concurrent_to_uuid, ip_address *ip, FILE *body, off_t payload_offset,
|
|
char *mime_type, int response_code, char *redirect_location);
|
|
bool warc_write_resource_record (char *resource_uuid, const char *url,
|
|
const char *timestamp_str, const char *concurrent_to_uuid, ip_address *ip,
|
|
const char *content_type, FILE *body, off_t payload_offset);
|
|
|
|
#endif /* WARC_H */
|