From: Klemens Nanni Date: Tue, 30 Jan 2024 01:52:49 +0000 (+0100) Subject: fix [-Wunused-variable] for keep* variables X-Git-Tag: 4.3.4-dev~47^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62abb0465c0840a06703256e51fccdbec50294c0;p=thirdparty%2Fshairport-sync.git fix [-Wunused-variable] for keep* variables --- diff --git a/rtsp.c b/rtsp.c index 6ac85050..ee8f2971 100644 --- a/rtsp.c +++ b/rtsp.c @@ -5601,7 +5601,7 @@ void *rtsp_listen_loop(__attribute((unused)) void *arg) { } else { size_of_reply = sizeof(SOCKADDR); if (getsockname(conn->fd, (struct sockaddr *)&conn->local, &size_of_reply) == 0) { - +#ifndef COMPILE_FOR_OPENBSD // Thanks to https://holmeshe.me/network-essentials-setsockopt-SO_KEEPALIVE/ for this. // turn on keepalive stuff -- wait for keepidle + (keepcnt * keepinttvl time) seconds @@ -5623,7 +5623,6 @@ void *rtsp_listen_loop(__attribute((unused)) void *arg) { #define KEEP_ALIVE_OR_IDLE_OPTION TCP_KEEPIDLE #endif -#ifndef COMPILE_FOR_OPENBSD if (setsockopt(conn->fd, SOL_OPTION, KEEP_ALIVE_OR_IDLE_OPTION, (void *)&keepAliveIdleTime, sizeof(keepAliveIdleTime))) { debug(1, "can't set the keepidle wait time");