forked from iqiyi/dpvs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipvs: correct the byte order of some members of fnat_seq and syn_prox…
…y_seq. - "fnat_seq's isn" uses host-byte order while "syn_proxy_seq's isn" uses network-byte order. - Both "delta" and "fdata_seq" use host-byte order within fnat_seq and syn_proxy_seq. o struct dp_vs_seq fnat_seq; struct dp_vs_seq { uint32_t isn; // host-byte order uint32_t delta; // host-byte order uint32_t fdata_seq; // host-byte order uint32_t prev_data; // unused }; o struct dp_vs_seq syn_proxy_seq; struct dp_vs_seq { uint32_t isn; // network-byte order uint32_t delta; // host-byte order uint32_t fdata_seq; // host-byte order uint32_t prev_data; // unused };
- Loading branch information
zhuangyan
committed
Jul 30, 2019
1 parent
868e428
commit d32aa2c
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters