Most voted "socket" questions
A network socket (socket) is an endpoint of a communication flow between processes over a computer network. This tag is different from websocket.
Learn more…352 questions
Sort by count of
-
-2
votes1
answer41
viewsHow to serialize a Hash object from Hashlib for Socket submission?
How is it possible to serialize an object of the type _hashlib.HASH , so that it is suitable for sending via sockets (sendall() and send()) ? With the pickle is made: hashed_Message =…
-
-3
votes1
answer28
viewsSocket is closed
I’m trying to create a very simple application, make only a TCP/IP connection using Java Socket, record the client message in a file and return the response to the client, but the last part, which…