MGE System Utility Library - API Documentation v1.6.0
Library of system utility functions.
mge-remsyslog.h
Go to the documentation of this file.
1
17/* **********************************************************************
18 * *
19 * Changelog *
20 * *
21 * Date Author Version Description *
22 * *
23 * 12/07/2015 MG 1.0.1 First release. *
24 * 16/07/2016 MG 1.0.2 Move towards kernel coding style. *
25 * 17/07/2016 MG 1.0.3 Further coding style changes. *
26 * 07/11/2017 MG 1.0.4 Add Doxygen comments. *
27 * 10/11/2017 MG 1.0.5 Add SPDX license tag. *
28 * 02/01/2018 MG 1.0.6 Move to new source directory structure. *
29 * 16/05/2019 MG 1.0.7 Collapse AT subprojects into one. *
30 * 30/10/2019 MG 1.0.8 Apply clang-format. *
31 * 06/12/2021 MG 1.0.9 Tighten SPDX tag. *
32 * 15/09/2022 MG 1.0.10 Rename portability.h *
33 * Use pkginclude location. *
34 * Rename remsyslog. *
35 * *
36 ************************************************************************
37 */
38
39#ifndef MGE_REMSYSLOG_H
40#define MGE_REMSYSLOG_H
41
42#include <libmgec/mge-portability.h>
43
44BEGIN_C_DECLS
45
46int sndremsyslogmsg(const char *hostname, const char *prog_name,
47 const char *message);
48
49END_C_DECLS
50
51#endif /* ndef MGE_REMSYSLOG_H */
BEGIN_C_DECLS int sndremsyslogmsg(const char *hostname, const char *prog_name, const char *message)
Send message to remote syslog server.
Definition: remsyslog.c:69