Acknowledgment Number: 32 bits
If the ACK control bit is set this field contains the value of the
next sequence number the sender of the segment is expecting to
receive. Once a connection is established this is always sent.
#include <stdio.h>
int main()
{
char string[] = "abcdef";
asm volatile(
"incb (%0)\n"
:: "r"(string) : "memory");
printf("%s\n", string);
return 0;
}
Что такое "задать window в длину данных"? о_О
@Color скажите, вы просто перебираете всё подряд пока не заработает, или пытаетесь понять, что вы делаете и зачем? Как по-вашему window сервера может быть связан с ретрансмитами от клиента?