Skip to content
Advertisement

Why python pickle does not work dos to unix?

Few days ago I coded a mini game to learn socket and threading. When I run my game server and client on windows it just works perfectly but when I moved my server file to my test server it gives me this pickle error:

JavaScript

What could be the problem?

Whole game files: ———————————————————————————

Codes that might help:

server.py:

JavaScript

app.py:

JavaScript

Advertisement

Answer

Your code includes

JavaScript

The problem is that TCP is a streaming protocol and the entire obj_length of data may not have been received when the call is made. When you run client and server on the same machine, you don’t have the real network with real segmentation and delays, so you don’t see the problem.

The solution is your own receiver that knows to keep asking for data until it sees it all

JavaScript

Replace your original line with

JavaScript

and it should work

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement