You need to sign in or sign up before continuing.
SocketUtil.cxx 2.15 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2013 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
 */

20
#include "config.h"
21
#include "SocketUtil.hxx"
22
#include "SocketError.hxx"
23
#include "fd_util.h"
24

25 26
#include <glib.h>

27 28
#include <unistd.h>

29
#ifndef WIN32
30
#include <sys/socket.h>
31
#else
32
#include <ws2tcpip.h>
33
#include <winsock.h>
34
#endif
35 36 37 38 39

#ifdef HAVE_IPV6
#include <string.h>
#endif

40 41 42 43
int
socket_bind_listen(int domain, int type, int protocol,
		   const struct sockaddr *address, size_t address_length,
		   int backlog,
44
		   Error &error)
45 46 47 48
{
	int fd, ret;
	const int reuse = 1;

49
	fd = socket_cloexec_nonblock(domain, type, protocol);
50
	if (fd < 0) {
51 52
		SetSocketError(error);
		error.AddPrefix("Failed to create socket: ");
53 54 55 56
		return -1;
	}

	ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
57
			 (const char *) &reuse, sizeof(reuse));
58
	if (ret < 0) {
59 60
		SetSocketError(error);
		error.AddPrefix("setsockopt() failed: ");
61
		close_socket(fd);
62 63 64 65 66
		return -1;
	}

	ret = bind(fd, address, address_length);
	if (ret < 0) {
67
		SetSocketError(error);
68
		close_socket(fd);
69 70 71 72 73
		return -1;
	}

	ret = listen(fd, backlog);
	if (ret < 0) {
74 75
		SetSocketError(error);
		error.AddPrefix("listen() failed: ");
76
		close_socket(fd);
77 78 79 80
		return -1;
	}

#ifdef HAVE_STRUCT_UCRED
81 82
	setsockopt(fd, SOL_SOCKET, SO_PASSCRED,
		   (const char *) &reuse, sizeof(reuse));
83 84 85 86
#endif

	return fd;
}
87 88 89 90 91 92 93

int
socket_keepalive(int fd)
{
	const int reuse = 1;

	return setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
94
			  (const char *)&reuse, sizeof(reuse));
95
}