python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
TCP response breaks after 1460bytes
Response from one linux server to another linux server breaks after 1460 bytes , checked on server (MTU is default 1500).
but why it is happening to few requests only because all responses are more th...
TheMonk
Votes: 0
Answers: 0
Why TCPClient doesn't receive text data
I have two projects: client and server.
Server code:
static void Main()
{
var listener = new TcpListener(System.Net.IPAddress.Loopback, 13000);
listener.Start();
using (var client = liste...
Иван Силин
Votes: 0
Answers: 1
Can I manually make tcp zero window and drop?
I have to request specific directory repeatedly. ex) https://example.org/home/dir/aaa/11
There is case if http response status code is 200 or else. If 200? read data from raw socket&and if there i...
Http2inc
Votes: 0
Answers: 0