36 lines
2.0 KiB
Diff
36 lines
2.0 KiB
Diff
From d125991e2d5f4095605eece35d8d436437036a12 Mon Sep 17 00:00:00 2001
|
|
From: Shawn Landden <shawn@churchofgit.com>
|
|
Date: Sat, 16 Nov 2013 13:18:13 -0800
|
|
Subject: [PATCH] core/socket: fix SO_REUSEPORT
|
|
|
|
---
|
|
src/core/load-fragment-gperf.gperf.m4 | 1 +
|
|
src/core/socket.c | 2 +-
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/core/load-fragment-gperf.gperf.m4 b/src/core/load-fragment-gperf.gperf.m4
|
|
index 31fb7bc..d65bcc1 100644
|
|
--- a/src/core/load-fragment-gperf.gperf.m4
|
|
+++ b/src/core/load-fragment-gperf.gperf.m4
|
|
@@ -211,6 +211,7 @@ Socket.Broadcast, config_parse_bool, 0,
|
|
Socket.PassCredentials, config_parse_bool, 0, offsetof(Socket, pass_cred)
|
|
Socket.PassSecurity, config_parse_bool, 0, offsetof(Socket, pass_sec)
|
|
Socket.TCPCongestion, config_parse_string, 0, offsetof(Socket, tcp_congestion)
|
|
+Socket.ReusePort, config_parse_bool, 0, offsetof(Socket, reuseport)
|
|
Socket.MessageQueueMaxMessages, config_parse_long, 0, offsetof(Socket, mq_maxmsg)
|
|
Socket.MessageQueueMessageSize, config_parse_long, 0, offsetof(Socket, mq_msgsize)
|
|
Socket.Service, config_parse_socket_service, 0, 0
|
|
diff --git a/src/core/socket.c b/src/core/socket.c
|
|
index d368f7e..e673f38 100644
|
|
--- a/src/core/socket.c
|
|
+++ b/src/core/socket.c
|
|
@@ -770,7 +770,7 @@ static void socket_apply_socket_options(Socket *s, int fd) {
|
|
|
|
if (s->reuseport) {
|
|
int b = s->reuseport;
|
|
- if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &b, sizeof(b)))
|
|
+ if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &b, sizeof(b)) < 0)
|
|
log_warning_unit(UNIT(s)->id, "SO_REUSEPORT failed: %m");
|
|
}
|
|
|