What is the best way to get a byte array from a struct to send over TCP sockets? I'm using .Net (VB or C#).
|
2
|
|||||
|
|
|
If you're using C#, you can also marshal it to a native buffer yourself, to have better control over serialization. You would need to add the appropriate attribute to your struct,
Then you can serialize it using:
|
||
|
|
|
|
You should look into Serialization. There are number of options available to you, from Protocol Buffers (implementations by the 1st and 2nd ranked SO users) to Xml to the BinaryFormatter. |
|||
|
|
|
|
I'm assuming the C language since you say "struct" you can use a function called
where FD is the filedescriptor of socket the buffer is the address of the structure, and count is the size in bytes you would use it as:
|
||||
|
|
|
If you are willing to take care of the endian (to communicate in an heterogeneous network), the only way to do this is field by field. |
||
|
|
|
|
You need to be more specific and tell us your language. For many languages, there are ready-made frameworks, or even parts of the language's standard environment, for doing these kinds of things. |
||
|
|
