vote up 1 vote down star
2

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#).

flag

What is your environment (.NET, Java, C/C++)? Nothing going without this info. – Anton Tykhyy Mar 16 at 15:09
What programming language are you using? – Groo Mar 16 at 15:10

5 Answers

vote up 5 vote down check

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,

  [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack=1)]

Then you can serialize it using:

    /// <summary>
    /// Serializes the specified object into a byte array.
    /// </summary>
    /// <param name="nativeObject">The object to serialize.</param>
    /// <returns></returns>
    public static byte[] Serialize(object obj)
    {
        Type objectType = obj.GetType();
        int objectSize = Marshal.SizeOf(obj);
        IntPtr buffer = Marshal.AllocHGlobal(objectSize);
        Marshal.StructureToPtr(obj, buffer, false);
        byte[] array = new byte[objectSize];
        Marshal.Copy(buffer, array , 0, objectSize);
        Marshal.FreeHGlobal(buffer);
        return array;
    }
link|flag
vote up 3 vote down

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.

link|flag
vote up 0 vote down

I'm assuming the C language since you say "struct"

you can use a function called

ssize_t write(int fd, const void *buf, size_t count);

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:

write(socket,&struct_var, sizeof(struct_var));

link|flag
Does this account for alignment, packing and endianness? – sharptooth Mar 16 at 15:18
no it does not. For endianness you would have to use a function like htonl, htons, ntohl, ntohs which convert values between host and network byte order. For packing you can use your compiler to force a certain packing structure or alignment. – Jaap Geurts Mar 20 at 4:19
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.