Squid Web Cache master
Loading...
Searching...
No Matches
Tcp.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#ifndef SQUID_SRC_COMM_TCP_H
10#define SQUID_SRC_COMM_TCP_H
11
12namespace Comm
13{
14
17{
18public:
19 unsigned int idle = 0;
20 unsigned int interval = 0;
21 unsigned int timeout = 0;
22 bool enabled = false;
23};
24
26void ApplyTcpKeepAlive(int fd, const TcpKeepAlive &);
27
28} // namespace Comm
29
30#endif /* SQUID_SRC_COMM_TCP_H */
Configuration settings for the TCP keep-alive feature.
Definition Tcp.h:17
unsigned int idle
Definition Tcp.h:19
unsigned int timeout
Definition Tcp.h:21
unsigned int interval
Definition Tcp.h:20
Abstraction layer for TCP, UDP, TLS, UDS and filedescriptor sockets.
void ApplyTcpKeepAlive(int fd, const TcpKeepAlive &)
apply configured TCP keep-alive settings to the given FD socket
Definition Tcp.cc:49