We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
http://forum.adguard.com/showthread.php?7259-Android-TV&p=64466#post64466
The text was updated successfully, but these errors were encountered:
We shouldn't simply compare seqno and ackno (because when they overflow we get nothing). Instead we should use a functions like these:
#define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) #define TCP_SEQ_LEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) <= 0) #define TCP_SEQ_GT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) > 0) #define TCP_SEQ_GEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) >= 0)
Sorry, something went wrong.
We should ping back when it is fixed: http://forum.adguard.com/showthread.php?7259-Android-TV
Revertron
No branches or pull requests
http://forum.adguard.com/showthread.php?7259-Android-TV&p=64466#post64466
The text was updated successfully, but these errors were encountered: