/* * (C) 2018-2019 by Christian Hesse * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. */ #ifndef _UDP514_JOURNAL_H #define _UDP514_JOURNAL_H #define _POSIX_C_SOURCE 200809L #define SYSLOG_NAMES #include #include #include #include #include #include #include #include #include #include #include #include #include #define STR_(x) #x #define STR(x) STR_(x) #define LOCAL_SERVER_PORT 514 #define LOCAL_SERVER_PORT_STR STR(LOCAL_SERVER_PORT) #define BUFFER_SIZE 1024 #endif /* _UDP514_JOURNAL_H */