summaryrefslogtreecommitdiff
path: root/socket.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-27 04:31:52 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-27 04:31:52 +0100
commitacbb02252a38214ecba3aa8a5c9b3669f9c9317e (patch)
tree6c1d40078a245cd4b94d46b00f273cd5b9514aeb /socket.h
parentb858b600e46f4a25ddc9fb980e5a73ca5aa2690f (diff)
yay, we can start socket units
Diffstat (limited to 'socket.h')
-rw-r--r--socket.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/socket.h b/socket.h
index c34689b852..2c8a69f661 100644
--- a/socket.h
+++ b/socket.h
@@ -5,6 +5,7 @@
typedef struct Socket Socket;
+#include "manager.h"
#include "unit.h"
#include "socket-util.h"
@@ -46,6 +47,7 @@ struct SocketPort {
char *path;
int fd;
+ Watch fd_watch;
LIST_FIELDS(SocketPort, port);
};
@@ -71,8 +73,10 @@ struct Socket {
ExecCommand* control_command;
pid_t control_pid;
+ char *bind_to_device;
+
bool failure;
- int timer_id;
+ Watch timer_watch;
};
/* Called from the service code when collecting fds */