Se eu entendi corretamente, você está procurando o valor inicial do parâmetro snd_cwnd
definido quando um soquete TCP é inicializado.
Parece que, começando com o kernel do linux 2.6.39
, uma macro TCP_INIT_CWND
foi introduzida em linux / include / net / tcp.h que preenche o valor de snd_cwnd
ao inicializar um soquete TCP.
Eu sei onde esse código está no kernel para IPv4
e, infelizmente, ele não parece usar nenhuma macro para preencher o valor de kernels mais antigos que 2.6.39
/* net/ipv4/tcp_ipv4.c from 2.6.37 kernel */
static int tcp_v4_init_sock(struct sock *sk)
{
struct inet_connection_sock *icsk = inet_csk(sk);
struct tcp_sock *tp = tcp_sk(sk);
....
....
....
/* So many TCP implementations out there (incorrectly) count the
* initial SYN frame in their delayed-ACK and congestion control
* algorithms that we must have the following bandaid to talk
* efficiently to them. -DaveM
*/
tp->snd_cwnd = 2;
....
....
....
}
Existe um código init semelhante para IPv6
, bem como dentro da função tcp_v6_init_sock()
em net/ipv6/tcp_ipv6.c