/usr/include/gdnsd/log.h is in gdnsd-dev 1.11.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /* Copyright © 2012 Brandon L Black <blblack@gmail.com>
*
* This file is part of gdnsd.
*
* gdnsd is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* gdnsd is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gdnsd. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef GDNSD_LOG_H
#define GDNSD_LOG_H
#include <gdnsd/compiler.h>
#include <gdnsd/net.h>
#include <inttypes.h>
#include <stdlib.h>
#include <errno.h>
#include <stdarg.h>
#include <syslog.h>
#include <gdnsd/dmn.h>
#define gdnsd_logger dmn_logger
#define gdnsd_loggerv dmn_loggerv
#define log_info dmn_log_info
#define log_warn dmn_log_warn
#define log_err dmn_log_err
#define log_fatal dmn_log_fatal
#define log_debug dmn_log_debug
/* Custom thread-safe %s-formatters for anysin_t*, errno, etc..
* Use these *only* in the argument lists of log_foo() calls!
*
* e.g.:
*
* anysin_t* asin = ...;
* int pthread_error = ...;
* log_err("pthread error: %s, regular errno: %s, sockaddr: %s",
* logf_errnum(pthread_error), logf_errno(), logf_anysin(asin));
*/
const char* gdnsd_logf_dname(const uint8_t* dname);
// For logging pathnames returned by gdnsd/path.h functions,
// e.g. gdnsd_resolve_path_cfg() and gdnsd_get_pidpath().
// In the system-paths case it will return normal pathnames.
// In the rooted case it will return things like:
// "[/srv/gdnsd]/etc/geoip/GeoIPRegion.dat"
const char* gdnsd_logf_pathname(const char* path);
// "ipv6" must be allocated for 16 bytes, containing
// a network-order address
const char* gdnsd_logf_ipv6(const uint8_t* ipv6);
// standard "struct in6_addr" (basically the same thing...)
const char* gdnsd_logf_in6a(const struct in6_addr* in6a);
#define gdnsd_logf_errnum dmn_strerror
#define gdnsd_logf_errno() dmn_strerror(errno)
#define gdnsd_logf_anysin dmn_logf_anysin
#define gdnsd_logf_anysin_noport dmn_logf_anysin_noport
#define logf_anysin dmn_logf_anysin
#define logf_anysin_noport dmn_logf_anysin_noport
#define logf_dname gdnsd_logf_dname
#define logf_errnum dmn_strerror
#define logf_errno() dmn_strerror(errno)
#define logf_pathname gdnsd_logf_pathname
#define logf_ipv6 gdnsd_logf_ipv6
#define logf_in6a gdnsd_logf_in6a
#endif // GDNSD_LOG_H
|