mirror of
https://github.com/rofl0r/proxychains-ng
synced 2026-05-13 17:03:07 +08:00
993dfc059d
Fix "missing braces around initializer" warning.
6 lines
152 B
C
6 lines
152 B
C
#include "ip_type.h"
|
|
|
|
const ip_type ip_type_invalid = { .addr.v4.as_int = -1 };
|
|
const ip_type ip_type_localhost = { .addr.v4.octet = {127, 0, 0, 1} };
|
|
|