| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/include/spf2/ |
Upload File : |
/* * 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_NULL #define INC_SPF_DNS_NULL /* For an overview of the DNS layer system, see spf_dns.h */ /* The null DNS layer is really just a minimal DNS layer. It is * useful when you don't want to do any real DNS lookups, or when you * want to be able to get debugging information about the requests * flowing between DNS layers. * * Multiple null DNS layers can be created, which can be useful for * debugging purposes. */ /* * These routines take care of creating/destroying/etc. the objects * that hold the DNS layer configuration. spfdcid objects contain * malloc'ed data, so they must be destroyed when you are finished * with them, or you will leak memory. */ /* * if debugging is enabled, information about the DNS queries sent to * the lower DNS layer, and the results returned from that layer will * be displayed. * * The "name" will be used when displaying debugging information so * that you can tell which location in the stack of DNS layers * generated the output. */ SPF_dns_server_t *SPF_dns_null_new( SPF_dns_server_t *layer_below, const char *name, int debug); #endif