如何使用 C++ 代码中的 setsockopt() 调用更改 TCP 拥塞控制算法

How to change TCP Congestion Control algorithm using setsockopt() call from C++ code

是否可以在 linux 中更改 TCP congestion control algorithm from Cubic to Reno or vice versa using setsockopt 从 C++ 代码 调用
我正在寻找这样做的示例代码。

您可以使用 TCP_CONGESTION 套接字选项获取或设置套接字的拥塞控制算法为 /proc/sys/net/ipv4/tcp_allowed_congestion_control 中列出的值之一或 [=14] 中的任何值=] 如果你的进程有特权。

C 示例:

#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

int main(int argc, char **argv)
{
    char buf[256];
    socklen_t len;
    int sock = socket(AF_INET, SOCK_STREAM, 0);

    if (sock == -1)
    {
        perror("socket");
        return -1;
    }

    len = sizeof(buf);

    if (getsockopt(sock, IPPROTO_TCP, TCP_CONGESTION, buf, &len) != 0)
    {
        perror("getsockopt");
        return -1;
    }

    printf("Current: %s\n", buf);

    strcpy(buf, "reno");

    len = strlen(buf);

    if (setsockopt(sock, IPPROTO_TCP, TCP_CONGESTION, buf, len) != 0)
    {
        perror("setsockopt");
        return -1;
    }

    len = sizeof(buf);

    if (getsockopt(sock, IPPROTO_TCP, TCP_CONGESTION, buf, &len) != 0)
    {
        perror("getsockopt");
        return -1;
    }

    printf("New: %s\n", buf);

    close(sock);
    return 0;
}

对我来说输出:

Current: cubic
New: reno