blob: 1dc84e070ebf9159099a26da9fdc20e8c570c0aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef POP3_MIGRATION_PLUGIN_H
#define POP3_MIGRATION_PLUGIN_H
struct module;
void pop3_migration_plugin_init(struct module *module);
void pop3_migration_plugin_deinit(void);
int pop3_migration_get_hdr_sha1(uint32_t mail_seq, struct istream *input,
unsigned char sha1_r[STATIC_ARRAY SHA1_RESULTLEN],
bool *have_eoh_r);
#endif
|