Listen的backlog参数现象解析

本文通过抓包分析深入理解TCP中listen的backlog参数。backlog在内核2.2以后表示建立连接的队列长度。实验显示,当队列满时,服务端会丢弃ACK,导致客户端重传,超过重试次数则发送RST终止连接。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 背景:

        面试偶尔会被问到backlog作用,之前只知道是监听队列的长度,本文先通过抓包了解listen的backlog。

2. 官方文档的解释:

       The behavior of the backlog argument on TCP sockets changed with Linux 2.2.  Now it specifies
       the queue length for completely established sockets waiting to be accepted,  instead  of  the
       number  of  incomplete  connection  requests.
       The backlog argument defines the maximum length to which the queue of pending connections for
       sockfd may grow.  If a connection request arrives when the queue  is  full,  the  client  may
       receive  an  error with an indication of ECONNREFUSED or, if the underlying protocol supports
       retransmission, the request may be ignored so that a later reattempt at connection  succeeds.

        man listen出来的结果中显示,backlog在内核2.2版本之后,表示的是建立连接的队列长度,而不是之前版本中的不完全的连接(SYNC_RECV状态)。

        如果队列满,则会尝试重传。

3. 现象:

        服务端代码:服务端监听后不做任何接受操作。

#define CHECK(s) do { \
    if ((s) == -1) { \
        printf ("Internal error in %d\n", __LINE__); \
        printf ("ERROR : %s\n", strerror (errno)); \
        exit (1); \
    } \
} while (0)

#define PORT 8888

int main ()
{
    int fd; 
    struct sockaddr_in saddr;
    
    fd = socket (AF_INET, SOCK_STREAM, 0); 
    CHECK (fd);

    memset (&saddr, 0, sizeof (saddr));
    saddr.sin_family = AF_INET;
    saddr.sin_port = htons (PORT);
    saddr.sin_addr.s_addr = htonl (INADDR_A
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值