mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-21 12:24:29 +02:00
16 lines
251 B
C
16 lines
251 B
C
#ifndef MOSQUITTO_SIGNAL_H
|
|
#define MOSQUITTO_SIGNAL_H
|
|
|
|
enum mosq_signal {
|
|
MSIG_CONFIG_RELOAD,
|
|
MSIG_LOG_ROTATE,
|
|
MSIG_SHUTDOWN,
|
|
MSIG_TREE_PRINT,
|
|
MSIG_XTREPORT,
|
|
};
|
|
|
|
void signal_all(int sig);
|
|
void send_signal(int pid, enum mosq_signal msig);
|
|
|
|
#endif
|