mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 06:53:10 +00:00
fix the previous commit
This commit is contained in:
parent
36860101ec
commit
d7b3b48f0e
1 changed files with 6 additions and 6 deletions
|
|
@ -35,17 +35,17 @@
|
|||
|
||||
|
||||
typedef struct {
|
||||
struct in6_addr addr;
|
||||
struct in6_addr mask;
|
||||
} ngx_in6_cidr_t;
|
||||
in_addr_t addr;
|
||||
in_addr_t mask;
|
||||
} ngx_in_cidr_t;
|
||||
|
||||
|
||||
#if (NGX_HAVE_INET6)
|
||||
|
||||
typedef struct {
|
||||
in_addr_t addr;
|
||||
in_addr_t mask;
|
||||
} ngx_in_cidr_t;
|
||||
struct in6_addr addr;
|
||||
struct in6_addr mask;
|
||||
} ngx_in6_cidr_t;
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue