Skip to content
Advertisement

Failed to struct.pack connection name in python

I try to use struct.pack but i get the next exception when i run it:

JavaScript

the code that i run:

JavaScript

I try to send the connection_struct as str and also as a bytes using encode.

Advertisement

Answer

The {name_len}s in your connection_struct specifies that you will pass {name_len} number of chars so when you call struct.pack() the last argument is expected to be of bytes of length {name_len}

To solve the struct.error convert connect_name from type string to byte and connection_struct can be either bytes or strings:

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