I'm working on a server (implemented in Python) client (implemented in C) application. I want to unpack raw bytes received from a C client using struct module at server side (Python).
My C structure (from C client):
typedef struct lokesh{
int command;
union
{
struct{
int data[100];
int ttl[100];
};
struct{
char config[256];
};
};
} mystructdata;
Unpacking at server side (Python):-
import struct
data,address=socket.recvfrom(1024)
result=struct.unpack('<i 2048s',data)
print(result[0])
But I'm getting an error :-
struct.error: unpack require object of size 2052
I think problem is in my unpack method's format string '<i 2048s' argument.
Edit :-
now, i have replaced format string
'<i 2048s'with format string'<i 256s'