#ifndef _RRDPH_
#define _RRDPH_
#define RRDP_XMLNS "http://www.ripe.net/rpki/rrdp"
#define MAX_VERSION 1
#define PARSE_FAIL(p, ...) do { \
XML_StopParser(p, XML_FALSE); \
warnx(__VA_ARGS__); \
return; \
} while (0)
enum rrdp_task {
NOTIFICATION,
SNAPSHOT,
DELTA,
};
struct rrdp;
struct publish_xml {
char *uri;
char *data;
char hash[SHA256_DIGEST_LENGTH];
size_t data_length;
enum publish_type type;
};
char *xstrdup(const char *);
void rrdp_publish_file(struct rrdp *, struct publish_xml *,
unsigned char *, size_t);
struct publish_xml *new_publish_xml(enum publish_type, char *,
char *, size_t);
void free_publish_xml(struct publish_xml *);
int publish_add_content(struct publish_xml *,
const char *, int);
int publish_done(struct rrdp *, struct publish_xml *);
struct notification_xml;
struct notification_xml *new_notification_xml(XML_Parser,
struct rrdp_session *, struct rrdp_session *,
const char *);
void free_notification_xml(struct notification_xml *);
enum rrdp_task notification_done(struct notification_xml *,
char *);
const char *notification_get_next(struct notification_xml *,
char *, size_t, enum rrdp_task);
int notification_delta_done(struct notification_xml *);
void log_notification_xml(struct notification_xml *);
struct snapshot_xml;
struct snapshot_xml *new_snapshot_xml(XML_Parser, struct rrdp_session *,
struct rrdp *);
void free_snapshot_xml(struct snapshot_xml *);
void log_snapshot_xml(struct snapshot_xml *);
struct delta_xml;
struct delta_xml *new_delta_xml(XML_Parser, struct rrdp_session *,
struct rrdp *);
void free_delta_xml(struct delta_xml *);
void log_delta_xml(struct delta_xml *);
#endif