MGE System Utility Library - Full Internal Documentation v1.4.6
Library of system utility functions.
Loading...
Searching...
No Matches
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 * *
33 ************************************************************************
34 */
35
36#ifndef REMSYSLOG_H
37#define REMSYSLOG_H
38
39#include <portability.h>
40
41BEGIN_C_DECLS
42
43int sndremsyslogmsg(const char *hostname, const char *prog_name,
44 const char *message);
45
46END_C_DECLS
47
48#endif /* ndef REMSYSLOG_H */
49
BEGIN_C_DECLS int sndremsyslogmsg(const char *hostname, const char *prog_name, const char *message)
Send message to remote syslog server.
Definition: remsyslog.c:64