Possible Duplicate: gen_tcp smushed messages
Sometimes when I send binary data with gen_tcp:send it gets merged in the inbox, example <<0,1>> and <<1,0>> will be received as <<0,1,1,0>>. How can I fix this? Thanks for replies.
gen_tcp:send
<<0,1>>
<<1,0>>
<<0,1,1,0>>