SwiftSocket icon indicating copy to clipboard operation
SwiftSocket copied to clipboard

An existing connection was forcibly closed by the remote host

Open pekochun opened this issue 5 years ago • 0 comments

I used the following Python code as a client.

import socket

target_ip = "192.168.1.3"
target_port = 8080
buffer_size = 4096

i = 0
while True:
	if i == 10000:
		break

	tcp_client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

	tcp_client.connect((target_ip,target_port))
	tcp_client.send(str(i).encode())

	response = tcp_client.recv(buffer_size)
	print("[*]Received a response : {}".format(response))
	i = i + 1

Then, I ran the following server code in Swift.

func echoService(client: TCPClient) {
    print("Newclient from:\(client.address)[\(client.port)]")
    var d = client.read(1024*10)
    client.send(data: d!)
    client.close()
}

func testServer() {
    let server = TCPServer(address: "192.168.1.3", port: 8080)
    switch server.listen() {
      case .success:
        while true {
            if var client = server.accept() {
                echoService(client: client)
            } else {
                print("accept error")
            }
        }
      case .failure(let error):
        print(error)
    }
}

The code ran normally up to the 400th time, but after about 400 times, an error occurred in Python.

The error details are as follows

An existing connection was forcibly closed by the remote host

Does anyone know what causes this error?

pekochun avatar Mar 17 '20 04:03 pekochun