socket.h revision e4f44e734c4f397ee5e7ba3270e014a8ae0043dd
/*-*- 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;
int priority;
int mark;
int ip_tos;
int ip_ttl;
char *bind_to_device;
char *tcp_congestion;
long mq_maxmsg;
long mq_msgsize;
/* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
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);
extern const UnitVTable socket_vtable;
const char* socket_state_to_string(SocketState i);
SocketState socket_state_from_string(const char *s);
const char* socket_exec_command_to_string(SocketExecCommand i);
SocketExecCommand socket_exec_command_from_string(const char *s);
const char* socket_result_to_string(SocketResult i);
SocketResult socket_result_from_string(const char *s);