mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Made UDP flag defines unsigned (by adding the U suffix).
This commit is contained in:
parent
da40fbd054
commit
1660e800e0
@ -49,9 +49,9 @@ struct udp_hdr {
|
|||||||
PACK_STRUCT_FIELD(u16_t chksum);
|
PACK_STRUCT_FIELD(u16_t chksum);
|
||||||
} PACK_STRUCT_STRUCT;
|
} PACK_STRUCT_STRUCT;
|
||||||
|
|
||||||
#define UDP_FLAGS_NOCHKSUM 0x01
|
#define UDP_FLAGS_NOCHKSUM 0x01U
|
||||||
#define UDP_FLAGS_UDPLITE 0x02
|
#define UDP_FLAGS_UDPLITE 0x02U
|
||||||
#define UDP_FLAGS_CONNECTED 0x04
|
#define UDP_FLAGS_CONNECTED 0x04U
|
||||||
|
|
||||||
struct udp_pcb {
|
struct udp_pcb {
|
||||||
struct udp_pcb *next;
|
struct udp_pcb *next;
|
||||||
|
Loading…
Reference in New Issue
Block a user