Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
libspf2 /
include /
spf2 /
Delete
Unzip
Name
Size
Permission
Date
Action
spf.h
2.48
KB
-rw-r--r--
2023-10-10 07:33
spf_dns.h
5.49
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_cache.h
4.35
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_null.h
1.51
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_resolv.h
1.26
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_rr.h
2.29
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_test.h
1.32
KB
-rw-r--r--
2023-10-10 07:33
spf_dns_zone.h
2.85
KB
-rw-r--r--
2023-10-10 07:33
spf_lib_version.h
236
B
-rw-r--r--
2023-10-10 07:33
spf_log.h
4.98
KB
-rw-r--r--
2023-10-10 07:33
spf_record.h
7.33
KB
-rw-r--r--
2023-10-10 07:33
spf_request.h
2.98
KB
-rw-r--r--
2023-10-10 07:33
spf_response.h
8.6
KB
-rw-r--r--
2023-10-10 07:33
spf_server.h
3.45
KB
-rw-r--r--
2023-10-10 07:33
Save
Rename
/* * This program is free software; you can redistribute it and/or modify * it under the terms of either: * * a) The GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1, or (at your option) any * later version, * * OR * * b) The two-clause BSD license. * * These licenses can be found with the distribution in the file LICENSES */ #ifndef __GNUC__ #define __attribute__(x) #endif #ifndef INC_SPF #define INC_SPF #include "spf_lib_version.h" #include "spf_server.h" #include "spf_request.h" #include "spf_response.h" #include "spf_dns.h" #include "spf_log.h" #define SPF_VERSION 1 #define SPF_VER_STR "v=spf1" /* ********************************************************************* */ /** * FYI only -- can't be changed without recompiling the library * Most error messages are under 80 characters and we don't want * bad/malicious input to cause huge error messages. */ #define SPF_C_ERR_MSG_SIZE (2*80) #define SPF_SMTP_COMMENT_SIZE (4*80) #define SPF_RECEIVED_SPF_SIZE (6*80) #define SPF_SYSLOG_SIZE (10*80) /* ********************************************************************* */ /** * FYI only -- can't be changed without recompiling the library */ #define SPF_DEFAULT_MAX_DNS_MECH 10 /**< DoS limit on SPF mechanisms.*/ #define SPF_DEFAULT_MAX_DNS_PTR 10 /**< DoS limit on PTR records. */ #define SPF_DEFAULT_MAX_DNS_MX 10 /**< DoS limit on MX records. */ #define SPF_DEFAULT_SANITIZE 1 #define SPF_DEFAULT_WHITELIST "include:spf.trusted-forwarder.org" #define SPF_EXP_MOD_NAME "exp-text" /** The default SPF explanation, if no other is provided in the * SPF_server_t object. */ #define SPF_DEFAULT_EXP "Please%_see%_http://www.openspf.org/Why?id=%{S}&ip=%{C}&receiver=%{R}" /* ********************************************************************* */ /** SPF_strerror() translates the SPF error number into a readable string */ const char *SPF_strerror( SPF_errcode_t spf_err ); /** SPF_strresult() translates the SPF result number into a readable string */ const char *SPF_strresult( SPF_result_t result ); /** SPF_strreason() translates the SPF reason number into a readable string */ const char *SPF_strreason( SPF_reason_t reason ); /** * Returns the version information library. Useful if the library * is a shared library and may differ from when the application * was compiled. */ void SPF_get_lib_version( int *major, int *minor, int *patch ); const char *SPF_strrrtype(ns_type rr_type); #endif