X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fservice.h;h=54fbe46fa443ded2c0a8120cbb97769d28b57c58;hb=45071fcaa03eafc27352987fa2277b2792725036;hp=ad0b3b381e4d892f9322180debb5166394e327fa;hpb=e44da745d19b9e02e67e32ea82c3bad86175120c;p=elogind.git diff --git a/src/core/service.h b/src/core/service.h index ad0b3b381..54fbe46fa 100644 --- a/src/core/service.h +++ b/src/core/service.h @@ -39,6 +39,7 @@ typedef enum ServiceState { SERVICE_EXITED, /* Nothing is running anymore, but RemainAfterExit is true hence this is OK */ SERVICE_RELOAD, SERVICE_STOP, /* No STOP_PRE state, instead just register multiple STOP executables */ + SERVICE_STOP_SIGABRT, /* Watchdog timeout */ SERVICE_STOP_SIGTERM, SERVICE_STOP_SIGKILL, SERVICE_STOP_POST, @@ -161,6 +162,7 @@ struct Service { pid_t main_pid, control_pid; int socket_fd; + bool socket_fd_selinux_context_net; int bus_endpoint_fd; @@ -205,7 +207,7 @@ extern const UnitVTable service_vtable; struct Socket; -int service_set_socket_fd(Service *s, int fd, struct Socket *socket); +int service_set_socket_fd(Service *s, int fd, struct Socket *socket, bool selinux_context_net); const char* service_state_to_string(ServiceState i) _const_; ServiceState service_state_from_string(const char *s) _pure_;