89752096b8
Spfval validates SPF records. It does not check them via the network, this was intentionally omitted in favour of focusing purely on syntactically validating SPF records. Simply pass the validator a string and it will see if it validates as an SPFv1 or SPF-Classic record. If an error is found, it tries its best to report the error in question and the specific location in the record where the error occured. WWW: http://spfval.codeshare.ca/ PR: ports/83899 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
10 lines
312 B
C
10 lines
312 B
C
--- src/spfval/util.h.orig Mon Jul 25 07:43:56 2005
|
|
+++ src/spfval/util.h Mon Jul 25 07:44:25 2005
|
|
@@ -45,6 +45,7 @@
|
|
#define _UTIL_H 1
|
|
|
|
#include <stdlib.h> /* malloc / free */
|
|
+#include <sys/types.h>
|
|
#include <netinet/in.h> /* in_addr struct fBSD */
|
|
#include <arpa/inet.h> /* in_addr struct */
|
|
|