summaryrefslogtreecommitdiff
path: root/socket.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-26 04:18:44 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-26 04:18:44 +0100
commit034c6ed7da5e44bfdde5a5d0da75f7b7a59953b8 (patch)
treeea59315075d3ebda2de695b1bd0621d79fa9e987 /socket.h
parent9152c765065184d0c1267ed2499e3fe4cac53755 (diff)
first attempt at proper service/socket logic
Diffstat (limited to 'socket.h')
-rw-r--r--socket.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/socket.h b/socket.h
index db5cd2143c..a8821f6412 100644
--- a/socket.h
+++ b/socket.h
@@ -15,7 +15,11 @@ typedef enum SocketState {
SOCKET_LISTENING,
SOCKET_RUNNING,
SOCKET_STOP_PRE,
+ SOCKET_STOP_PRE_SIGTERM,
+ SOCKET_STOP_PRE_SIGKILL,
SOCKET_STOP_POST,
+ SOCKET_STOP_POST_SIGTERM,
+ SOCKET_STOP_POST_SIGKILL,
SOCKET_MAINTAINANCE,
_SOCKET_STATE_MAX
} SocketState;
@@ -43,26 +47,32 @@ struct SocketPort {
int fd;
- LIST_FIELDS(SocketPort);
+ LIST_FIELDS(SocketPort, port);
};
struct Socket {
Meta meta;
- SocketState state;
-
LIST_HEAD(SocketPort, ports);
/* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
bool bind_ipv6_only;
unsigned backlog;
+ usec_t timeout_usec;
+
ExecCommand* exec_command[_SOCKET_EXEC_MAX];
ExecContext exec_context;
+ Service *service;
+
+ SocketState state;
+
+ ExecCommand* control_command;
pid_t control_pid;
- Service *service;
+ bool failure;
+ int timer_id;
};
extern const NameVTable socket_vtable;