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 INC_SPF_DNS_TEST #define INC_SPF_DNS_TEST #include "spf_dns.h" /** * @file * @brief A testing layer for DNS. * * The test DNS layer is actually just a thin wrapper around the zone * DNS layer. It provides all the DNS information needed to do the * SPF regression tests. This happens to be useful to me when I'm * developing the library on my laptop and am not connected to the * net. * * While multiple test DNS layers can be created, I can't see any * use for more than one. * * For an overview of the DNS layer system, see spf_dns.h */ /** * These routines take care of creating/destroying/etc. the objects * that hold the DNS layer configuration. SPF_dns_server_t objects contain * malloc'ed data, so they must be destroyed when you are finished * with them, or you will leak memory. */ SPF_dns_server_t *SPF_dns_test_new( SPF_dns_server_t *layer_below, const char *name, int debug); #endif