You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some packets as bytes and want to analyse them. I also want to generate them as bytes. Currently it is done within the classes for sockets, but they are tied to network functions.
It is proposed to move the parsing and serialization code into .models and add the 2 methods, __bytes__ and from_bytes.
The text was updated successfully, but these errors were encountered:
You are right. I have already thought about it several times but until now, the fact of putting the logic at the level of the sockets allowed me to multualize certain variables and portions of code.
I'll try to change that as part of the next major update. However, I have a lot of projects to finish before :D
I have some packets as
bytes
and want to analyse them. I also want to generate them asbytes
. Currently it is done within the classes for sockets, but they are tied to network functions.It is proposed to move the parsing and serialization code into
.models
and add the 2 methods,__bytes__
andfrom_bytes
.The text was updated successfully, but these errors were encountered: