X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=socket.h;h=7076be7ef471eae1bc653c9249b9ce179a9748ef;hp=6f2a7e811b02ae148e059be78b09242808951c19;hb=41160f3dbf0cb61e23a02338da1f289a2ff00066;hpb=80876c20f64f87765242bc35895977ab6a855729 diff --git a/socket.h b/socket.h index 6f2a7e811..7076be7ef 100644 --- a/socket.h +++ b/socket.h @@ -65,11 +65,11 @@ typedef struct SocketPort SocketPort; struct SocketPort { SocketType type; + int fd; SocketAddress address; char *path; - int fd; Watch fd_watch; LIST_FIELDS(SocketPort, port); @@ -91,17 +91,21 @@ struct Socket { Service *service; - SocketState state; + SocketState state, deserialized_state; KillMode kill_mode; ExecCommand* control_command; + SocketExecCommand control_command_id; pid_t control_pid; char *bind_to_device; mode_t directory_mode; mode_t socket_mode; + bool accept; + unsigned n_accepted; + bool failure; Watch timer_watch; }; @@ -114,4 +118,10 @@ void socket_notify_service_dead(Socket *s); extern const UnitVTable socket_vtable; +const char* socket_state_to_string(SocketState i); +SocketState socket_state_from_string(const char *s); + +const char* socket_exec_command_to_string(SocketExecCommand i); +SocketExecCommand socket_exec_command_from_string(const char *s); + #endif