/* * (C) 2018-2024 by Christian Hesse * * This program 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. * * This program 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 this program. If not, see . * */ #ifndef _UDP514_JOURNAL_H #define _UDP514_JOURNAL_H #define _POSIX_C_SOURCE 200809L #include #include #include #include #include #include #include #include #include #include #include #define SYSLOG_NAMES #define __USE_MISC #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 */