mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 23:15:37 +00:00
Fixed bogus IPH_V/HL and IPH_VHL_SET endianess dependency
This commit is contained in:
parent
b1359f1c80
commit
6145af516b
@ -143,13 +143,8 @@ PACK_STRUCT_END
|
||||
# include "arch/epstruct.h"
|
||||
#endif
|
||||
|
||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
||||
#define IPH_V(hdr) ((hdr)->_v_hl >> 4)
|
||||
#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_LEN(hdr) ((hdr)->_len)
|
||||
#define IPH_ID(hdr) ((hdr)->_id)
|
||||
@ -158,11 +153,7 @@ PACK_STRUCT_END
|
||||
#define IPH_PROTO(hdr) ((hdr)->_proto)
|
||||
#define IPH_CHKSUM(hdr) ((hdr)->_chksum)
|
||||
|
||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
||||
#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_LEN_SET(hdr, len) (hdr)->_len = (len)
|
||||
#define IPH_ID_SET(hdr, id) (hdr)->_id = (id)
|
||||
|
Loading…
Reference in New Issue
Block a user