socket.h revision f7db7a691c3f532cf60886312459f2baea755283
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#pragma once
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "manager.h"
#include "unit.h"
#include "socket-util.h"
#include "mount.h"
#include "service.h"
typedef enum SocketState {
} SocketState;
typedef enum SocketExecCommand {
typedef enum SocketType {
_SOCKET_FIFO_INVALID = -1
} SocketType;
typedef enum SocketResult {
} SocketResult;
typedef struct SocketPort {
int fd;
char *path;
} SocketPort;
struct Socket {
unsigned n_accepted;
unsigned n_connections;
unsigned max_connections;
unsigned backlog;
/* For Accept=no sockets refers to the one service we'll
activate. For Accept=yes sockets is either NULL, or filled
when the next service we spawn. */
bool accept;
/* Socket options */
bool keep_alive;
bool free_bind;
bool transparent;
bool broadcast;
bool pass_cred;
bool pass_sec;
/* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
int priority;
int mark;
int ip_tos;
int ip_ttl;
char *bind_to_device;
char *tcp_congestion;
bool reuseport;
long mq_maxmsg;
long mq_msgsize;
char *smack;
char *smack_ip_in;
char *smack_ip_out;
};
/* Called from the service code when collecting fds */
/* Called from the service when it shut down */
/* Called from the mount code figure out if a mount is a dependency of
* any of the sockets of this socket */
/* Called from the service code when a per-connection service ended */
void socket_connection_unref(Socket *s);
void socket_free_ports(Socket *s);
extern const UnitVTable socket_vtable;