aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/ipaccess.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/ipaccess.c')
-rw-r--r--src/input/ipaccess.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 42dd942..3a20967 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -610,7 +610,6 @@ static void update_fd_settings(struct e1inp_line *line, int fd)
else
LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
-#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
/* The following options are not portable! */
val = line->keepalive_idle_timeout > 0 ?
line->keepalive_idle_timeout :
@@ -639,7 +638,6 @@ static void update_fd_settings(struct e1inp_line *line, int fd)
LOGP(DLINP, LOGL_NOTICE,
"Failed to set keepalive count: %s\n",
strerror(errno));
-#if defined(TCP_USER_TIMEOUT)
val = 1000 * line->keepalive_num_probes *
line->keepalive_probe_interval +
line->keepalive_idle_timeout;
@@ -649,8 +647,6 @@ static void update_fd_settings(struct e1inp_line *line, int fd)
LOGP(DLINP, LOGL_NOTICE,
"Failed to set user timoeut: %s\n",
strerror(errno));
-#endif
-#endif
}
val = 1;