1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
7 This file is part of systemd.
9 Copyright 2010 Lennart Poettering
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
25 typedef struct Socket Socket;
29 #include "socket-util.h"
32 typedef enum SocketState {
39 SOCKET_STOP_PRE_SIGTERM,
40 SOCKET_STOP_PRE_SIGKILL,
46 _SOCKET_STATE_INVALID = -1
49 typedef enum SocketExecCommand {
50 SOCKET_EXEC_START_PRE,
51 SOCKET_EXEC_START_POST,
53 SOCKET_EXEC_STOP_POST,
54 _SOCKET_EXEC_COMMAND_MAX,
55 _SOCKET_EXEC_COMMAND_INVALID = -1
58 typedef enum SocketType {
62 _SOCKET_FIFO_INVALID = -1
65 typedef struct SocketPort {
69 SocketAddress address;
73 LIST_FIELDS(struct SocketPort, port);
79 LIST_HEAD(SocketPort, ports);
81 /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
82 SocketAddressBindIPv6Only bind_ipv6_only;
87 ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
88 ExecContext exec_context;
92 SocketState state, deserialized_state;
96 ExecCommand* control_command;
97 SocketExecCommand control_command_id;
100 char *bind_to_device;
101 mode_t directory_mode;
111 /* Called from the service code when collecting fds */
112 int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds);
114 /* Called from the service when it shut down */
115 void socket_notify_service_dead(Socket *s);
117 /* Called from the mount code figure out if a mount is a dependency of
118 * any of the sockets of this socket */
119 int socket_add_one_mount_link(Socket *s, Mount *m);
121 extern const UnitVTable socket_vtable;
123 const char* socket_state_to_string(SocketState i);
124 SocketState socket_state_from_string(const char *s);
126 const char* socket_exec_command_to_string(SocketExecCommand i);
127 SocketExecCommand socket_exec_command_from_string(const char *s);