X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=socket.h;h=5495e3c5b9a9ccbd3b6353dc9a3491e310ff91cb;hp=a8821f64126b71375cffb187854fc8d3ad63a6a1;hb=d6ea93e31d96c67366feee0413a3c307fcffea2b;hpb=034c6ed7da5e44bfdde5a5d0da75f7b7a59953b8 diff --git a/socket.h b/socket.h index a8821f641..5495e3c5b 100644 --- a/socket.h +++ b/socket.h @@ -5,7 +5,8 @@ typedef struct Socket Socket; -#include "name.h" +#include "manager.h" +#include "unit.h" #include "socket-util.h" typedef enum SocketState { @@ -46,6 +47,7 @@ struct SocketPort { char *path; int fd; + Watch fd_watch; LIST_FIELDS(SocketPort, port); }; @@ -71,10 +73,18 @@ struct Socket { ExecCommand* control_command; pid_t control_pid; + char *bind_to_device; + bool failure; - int timer_id; + Watch timer_watch; }; -extern const NameVTable socket_vtable; +/* Called from the service code when collecting fds */ +int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds); + +/* Called from the service when it shut down */ +void socket_notify_service_dead(Socket *s); + +extern const UnitVTable socket_vtable; #endif