Marlon Von Ansale
Results
2
comments of
Marlon Von Ansale
``` func loadServer(){ self.mySocket = try! Socket.create(family: .inet, type: .stream, proto: .tcp) //self.mySocket = try! Socket.create(family: .inet6) self.mySocket?.readBufferSize = 32768 do { try mySocket!.connect(to: "localhost", port: 50694) var message =...
Loading server works fine but after I try to write it it has a Socket Error. The operation couldn’t be completed. (Socket.Socket.Error error 1.)