logIt Log Around The Clock

Posts Tagged ‘socket’

Close Low Level Socket in Python

tags:

Important to do in socket programming is to close the socket. Python.org says Close the socket. All future operations on the socket object will fail. The remote end will receive no more data (after queued data is flushed). Sockets are automatically closed when they are garbage-collected. I implemented this low level networking interface for a [...]