Closed vkoskiv closed 3 years ago
I've missed a ntoh/hton somewhere. Connections cross-arch like x86_64->ARM or x86_64->PowerPC fail right away.
ntoh/hton
Wasn't a missing byte order swap, I was using size_t for the transfer header value, which varies in size across different architectures. Swapping it out for an uint64_t resolved the issue.
size_t
uint64_t
I've missed a
ntoh/hton
somewhere. Connections cross-arch like x86_64->ARM or x86_64->PowerPC fail right away.