Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

big endian bug #1467

Closed
BrainSlayer opened this issue Feb 7, 2023 · 2 comments · Fixed by #1468
Closed

big endian bug #1467

BrainSlayer opened this issue Feb 7, 2023 · 2 comments · Fixed by #1468
Labels

Comments

@BrainSlayer
Copy link
Contributor

#define UDP_CONNECT_MSG 0x36373839 // "6789" - legacy value was 123456789

all udp messages are transmitted in host endian format. so iperf3 will not work if server and client are with different endian types. i verified this issue using a big endian power pc router and a little endian arm router as client and server

fix is trivial (i will make a pull request if required)
`

@bmah888 bmah888 linked a pull request Feb 9, 2023 that will close this issue
@bmah888 bmah888 added the bug label Feb 9, 2023
@bmah888
Copy link
Contributor

bmah888 commented Feb 9, 2023

Also see #1414 and #1415.

@sokarax
Copy link

sokarax commented Mar 5, 2023

#define UDP_CONNECT_MSG 0x36373839 // "6789" - legacy value was 123456789

all udp messages are transmitted in host endian format. so iperf3 will not work if server and client are with different endian types. i verified this issue using a big endian power pc router and a little endian arm router as client and server

fix is trivial (i will make a pull request if required)

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants