mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-19 05:10:40 +00:00
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/lwip
This commit is contained in:
commit
2697b3c7da
@ -91,13 +91,8 @@ PACK_STRUCT_END
|
|||||||
# include "arch/epstruct.h"
|
# include "arch/epstruct.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
||||||
#define IPH_V(hdr) ((hdr)->_v_hl >> 4)
|
#define IPH_V(hdr) ((hdr)->_v_hl >> 4)
|
||||||
#define IPH_HL(hdr) ((hdr)->_v_hl & 0x0f)
|
#define IPH_HL(hdr) ((hdr)->_v_hl & 0x0f)
|
||||||
#else /* BYTE_ORDER == LITTLE_ENDIAN */
|
|
||||||
#define IPH_V(hdr) ((hdr)->_v_hl & 0x0f)
|
|
||||||
#define IPH_HL(hdr) ((hdr)->_v_hl >> 4)
|
|
||||||
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
|
|
||||||
#define IPH_TOS(hdr) ((hdr)->_tos)
|
#define IPH_TOS(hdr) ((hdr)->_tos)
|
||||||
#define IPH_LEN(hdr) ((hdr)->_len)
|
#define IPH_LEN(hdr) ((hdr)->_len)
|
||||||
#define IPH_ID(hdr) ((hdr)->_id)
|
#define IPH_ID(hdr) ((hdr)->_id)
|
||||||
@ -106,11 +101,7 @@ PACK_STRUCT_END
|
|||||||
#define IPH_PROTO(hdr) ((hdr)->_proto)
|
#define IPH_PROTO(hdr) ((hdr)->_proto)
|
||||||
#define IPH_CHKSUM(hdr) ((hdr)->_chksum)
|
#define IPH_CHKSUM(hdr) ((hdr)->_chksum)
|
||||||
|
|
||||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
||||||
#define IPH_VHL_SET(hdr, v, hl) (hdr)->_v_hl = (((v) << 4) | (hl))
|
#define IPH_VHL_SET(hdr, v, hl) (hdr)->_v_hl = (((v) << 4) | (hl))
|
||||||
#else /* BYTE_ORDER == LITTLE_ENDIAN */
|
|
||||||
#define IPH_VHL_SET(hdr, v, hl) (hdr)->_v_hl = ((v) | ((hl) << 4))
|
|
||||||
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
|
|
||||||
#define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos)
|
#define IPH_TOS_SET(hdr, tos) (hdr)->_tos = (tos)
|
||||||
#define IPH_LEN_SET(hdr, len) (hdr)->_len = (len)
|
#define IPH_LEN_SET(hdr, len) (hdr)->_len = (len)
|
||||||
#define IPH_ID_SET(hdr, id) (hdr)->_id = (id)
|
#define IPH_ID_SET(hdr, id) (hdr)->_id = (id)
|
||||||
|
Loading…
Reference in New Issue
Block a user