Use standard unsigned integer types
This commit is contained in:
@@ -50,7 +50,7 @@ typedef struct {
|
||||
/** list of remote selectors */
|
||||
linked_list_t *remote;
|
||||
/** reqid of CHILD_SA */
|
||||
u_int32_t reqid;
|
||||
uint32_t reqid;
|
||||
} entry_t;
|
||||
|
||||
METHOD(listener_t, child_updown, bool,
|
||||
|
||||
@@ -54,15 +54,15 @@ struct private_farp_spoofer_t {
|
||||
* IP over Ethernet ARP message
|
||||
*/
|
||||
typedef struct __attribute__((packed)) {
|
||||
u_int16_t hardware_type;
|
||||
u_int16_t protocol_type;
|
||||
u_int8_t hardware_size;
|
||||
u_int8_t protocol_size;
|
||||
u_int16_t opcode;
|
||||
u_int8_t sender_mac[6];
|
||||
u_int8_t sender_ip[4];
|
||||
u_int8_t target_mac[6];
|
||||
u_int8_t target_ip[4];
|
||||
uint16_t hardware_type;
|
||||
uint16_t protocol_type;
|
||||
uint8_t hardware_size;
|
||||
uint8_t protocol_size;
|
||||
uint16_t opcode;
|
||||
uint8_t sender_mac[6];
|
||||
uint8_t sender_ip[4];
|
||||
uint8_t target_mac[6];
|
||||
uint8_t target_ip[4];
|
||||
} arp_t;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user