Tcp.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 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 
12 namespace Comm
13 {
14 
17 {
18 public:
19  unsigned int idle = 0;
20  unsigned int interval = 0;
21  unsigned int timeout = 0;
22  bool enabled = false;
23 };
24 
26 void ApplyTcpKeepAlive(int fd, const TcpKeepAlive &);
27 
28 } // namespace Comm
29 
30 #endif /* SQUID_SRC_COMM_TCP_H */
Abstraction layer for TCP, UDP, TLS, UDS and filedescriptor sockets.
Definition: AcceptLimiter.h:16
unsigned int timeout
Definition: Tcp.h:21
Configuration settings for the TCP keep-alive feature.
Definition: Tcp.h:16
bool enabled
Definition: Tcp.h:22
unsigned int idle
Definition: Tcp.h:19
void ApplyTcpKeepAlive(int fd, const TcpKeepAlive &)
apply configured TCP keep-alive settings to the given FD socket
Definition: Tcp.cc:51
unsigned int interval
Definition: Tcp.h:20

 

Introduction

Documentation

Support

Miscellaneous