Hi. I was wondering if someone could offer a bit of advice on this. I have made a web server, and everything seems to be done correctly as far as I can tell. It works and loads web pages just fine. The problem is, that when big files are requested from it, the transfers fail after about 2-5 minutes. I was wondering if anyone had any idea why?
The log reads:
Initializing Windows Sockets...
Forwarding port 80...
Starting server...
Waiting for incoming connections...
Socket 1128: Client connected.
Socket 1128: Request received
Socket 1128: Sent response
Socket 1128: Error 64: SendChunk() failed. //WSASend()
Socket 1128: Closing connection - GetQueueCompletionStatus == FALSE
after "Sent Response" which is the response header, the server starts sending chunks of the file...but at after a few minutes WSASend fails with error 64, which is ERROR_NETNAME_DELETED, or "The specified network name is no longer available." which I guess means the the client closed the connection for some reason, probably because of an error. No 0 byte recv is dequeued as it normally is when the browser disconnects gracefully.
if anyone has any idea why this is, it would be much appreciated =)
I'm stumped :icon_neutral: