diff options
Diffstat (limited to 'service.h')
-rw-r--r-- | service.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -112,11 +112,15 @@ struct Service { RateLimit ratelimit; + int socket_fd; + Watch timer_watch; }; extern const UnitVTable service_vtable; +int service_set_socket_fd(Service *s, int fd); + const char* service_state_to_string(ServiceState i); ServiceState service_state_from_string(const char *s); |