mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-02-13 17:53:14 +08:00
16 lines
238 B
C
16 lines
238 B
C
|
#ifndef IP_TYPE_H
|
||
|
#define IP_TYPE_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef union {
|
||
|
unsigned char octet[4];
|
||
|
uint32_t as_int;
|
||
|
} ip_type;
|
||
|
|
||
|
extern const ip_type ip_type_invalid;
|
||
|
extern const ip_type ip_type_localhost;
|
||
|
|
||
|
//RcB: DEP "ip_type.c"
|
||
|
#endif
|