123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef _UTIL_H
- #define _UTIL_H
- #include <time.h>
- #include "bgpdump_attr.h"
- void log_to_stderr(void);
- void log_to_syslog(void);
- void err(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
- void warn(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
- void debug(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
- char *fmt_ipv4(BGPDUMP_IP_ADDRESS addr, char *buffer);
- char *fmt_ipv6(BGPDUMP_IP_ADDRESS addr, char *buffer);
- void test_fmt_ip(void);
- int time2str(struct tm* date,char *time_str);
- int int2str(uint32_t value, char* str);
- void test_utils(void);
- #endif
|