make mingw_cross

This commit is contained in:
Matt 2024-04-03 12:44:50 +08:00 committed by GitHub
parent 9045264d37
commit b6c6813d41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -262,10 +262,10 @@ tcpdump -i eth1 ip and icmp -dd
//tcp option for SPA //tcp option for SPA
int g_tcp_spa = 0; int g_tcp_spa = 0;
typedef struct tcpopt_data { typedef struct tcpopt_data {
__u8 opcode; uint8_t opcode;
__u8 opsize; uint8_t opsize;
__u16 reserve; uint16_t reserve;
__u32 csum; uint32_t csum;
}tcpopt_data_t; }tcpopt_data_t;
#define TCPOPT_SPA 233 #define TCPOPT_SPA 233