chiark / gitweb /
yay, we can start socket units
[elogind.git] / socket.h
index a8821f64126b71375cffb187854fc8d3ad63a6a1..2c8a69f6613cb524502c2ee240d869c21b61c365 100644 (file)
--- 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,15 @@ 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);
+
+extern const UnitVTable socket_vtable;
 
 #endif