mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
532 B
C
16 lines
532 B
C
|
2 years ago
|
/* SPDX-License-Identifier: MIT-0 */
|
||
|
|
|
||
|
|
/* Implement the systemd notify protocol without external dependencies.
|
||
|
|
* Supports both readiness notification on startup and on reloading,
|
||
|
|
* according to the protocol defined at:
|
||
|
|
* https://www.freedesktop.org/software/systemd/man/latest/sd_notify.html
|
||
|
|
* This protocol is guaranteed to be stable as per:
|
||
|
|
* https://systemd.io/PORTABILITY_AND_STABILITY/ */
|
||
|
|
|
||
|
|
#ifndef SURICATA_UTIL_SYSTEMD_H
|
||
|
|
#define SURICATA_UTIL_SYSTEMD_H
|
||
|
|
|
||
|
|
int SystemDNotifyReady(void);
|
||
|
|
|
||
|
|
#endif /* SURICATA_UTIL_SYSTEMD_H */
|