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.
suricata/src/util-systemd.h

16 lines
532 B
C

/* 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 */