1 /*
2 **  Copyright (c) 2012, The Trusted Domain Project.  All rights reserved.
3 */
4 
5 #ifndef _DKIM_REPORT_H_
6 #define _DKIM_REPORT_H_
7 
8 /* system includes */
9 #include <sys/types.h>
10 #include <sys/time.h>
11 
12 /* libopendkim includes */
13 #include "dkim.h"
14 
15 /* definitions */
16 #define	DKIM_REPORT_PREFIX	"_report._domainkey"
17 
18 /* prototypes */
19 extern DKIM_STAT dkim_repinfo __P((DKIM *, DKIM_SIGINFO *,
20                                    struct timeval *, unsigned char *, size_t));
21 
22 #endif /* ! _DKIM_REPORT_H_ */
23