2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
#ifndef _NGX_INET_H_INCLUDED_
|
|
|
|
#define _NGX_INET_H_INCLUDED_
|
|
|
|
|
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2009-02-21 15:02:02 +08:00
|
|
|
/*
|
2009-10-26 19:43:32 +08:00
|
|
|
* TODO: autoconfigure NGX_SOCKADDRLEN and NGX_SOCKADDR_STRLEN as
|
2009-02-21 15:02:02 +08:00
|
|
|
* sizeof(struct sockaddr_storage)
|
2009-02-21 23:13:13 +08:00
|
|
|
* sizeof(struct sockaddr_un)
|
2009-02-21 15:02:02 +08:00
|
|
|
* sizeof(struct sockaddr_in6)
|
|
|
|
* sizeof(struct sockaddr_in)
|
|
|
|
*/
|
|
|
|
|
2009-10-26 19:43:32 +08:00
|
|
|
#define NGX_INET_ADDRSTRLEN (sizeof("255.255.255.255") - 1)
|
|
|
|
#define NGX_INET6_ADDRSTRLEN \
|
|
|
|
(sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") - 1)
|
|
|
|
#define NGX_UNIX_ADDRSTRLEN \
|
|
|
|
(sizeof(struct sockaddr_un) - offsetof(struct sockaddr_un, sun_path))
|
|
|
|
|
|
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
|
|
|
#define NGX_SOCKADDR_STRLEN (sizeof("unix:") - 1 + NGX_UNIX_ADDRSTRLEN)
|
|
|
|
#else
|
|
|
|
#define NGX_SOCKADDR_STRLEN (NGX_INET6_ADDRSTRLEN + sizeof(":65535") - 1)
|
|
|
|
#endif
|
|
|
|
|
2009-02-21 23:13:13 +08:00
|
|
|
#if (NGX_HAVE_UNIX_DOMAIN)
|
|
|
|
#define NGX_SOCKADDRLEN sizeof(struct sockaddr_un)
|
2009-02-21 15:02:02 +08:00
|
|
|
#else
|
2009-02-21 23:13:13 +08:00
|
|
|
#define NGX_SOCKADDRLEN 512
|
2009-02-21 15:02:02 +08:00
|
|
|
#endif
|
2008-08-22 02:47:23 +08:00
|
|
|
|
|
|
|
|
2004-05-25 23:28:46 +08:00
|
|
|
typedef struct {
|
2009-02-24 22:25:24 +08:00
|
|
|
in_addr_t addr;
|
|
|
|
in_addr_t mask;
|
|
|
|
} ngx_in_cidr_t;
|
2009-02-24 22:01:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
|
|
|
|
typedef struct {
|
2009-02-24 22:25:24 +08:00
|
|
|
struct in6_addr addr;
|
|
|
|
struct in6_addr mask;
|
|
|
|
} ngx_in6_cidr_t;
|
2009-02-24 22:01:40 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ngx_uint_t family;
|
|
|
|
union {
|
|
|
|
ngx_in_cidr_t in;
|
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
ngx_in6_cidr_t in6;
|
|
|
|
#endif
|
|
|
|
} u;
|
|
|
|
} ngx_cidr_t;
|
2004-05-25 23:28:46 +08:00
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
typedef struct {
|
2009-02-24 22:01:40 +08:00
|
|
|
struct sockaddr *sockaddr;
|
|
|
|
socklen_t socklen;
|
|
|
|
ngx_str_t name;
|
2009-11-02 23:14:17 +08:00
|
|
|
} ngx_addr_t;
|
2006-10-24 21:06:55 +08:00
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
typedef struct {
|
2009-02-24 22:01:40 +08:00
|
|
|
ngx_str_t url;
|
|
|
|
ngx_str_t host;
|
|
|
|
ngx_str_t port_text;
|
|
|
|
ngx_str_t uri;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
in_port_t port;
|
|
|
|
in_port_t default_port;
|
|
|
|
int family;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
unsigned listen:1;
|
|
|
|
unsigned uri_part:1;
|
|
|
|
unsigned no_resolve:1;
|
|
|
|
unsigned one_addr:1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
unsigned no_port:1;
|
|
|
|
unsigned wildcard:1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
socklen_t socklen;
|
|
|
|
u_char sockaddr[NGX_SOCKADDRLEN];
|
2009-02-21 15:02:02 +08:00
|
|
|
|
2009-11-02 23:14:17 +08:00
|
|
|
ngx_addr_t *addrs;
|
2009-02-24 22:01:40 +08:00
|
|
|
ngx_uint_t naddrs;
|
2006-12-05 00:46:13 +08:00
|
|
|
|
2009-02-24 22:01:40 +08:00
|
|
|
char *err;
|
2006-05-23 22:54:58 +08:00
|
|
|
} ngx_url_t;
|
|
|
|
|
|
|
|
|
2007-11-24 00:59:24 +08:00
|
|
|
in_addr_t ngx_inet_addr(u_char *text, size_t len);
|
2009-11-02 20:50:00 +08:00
|
|
|
#if (NGX_HAVE_INET6)
|
|
|
|
ngx_int_t ngx_inet6_addr(u_char *p, size_t len, u_char *addr);
|
|
|
|
#endif
|
2009-02-21 15:02:02 +08:00
|
|
|
size_t ngx_sock_ntop(struct sockaddr *sa, u_char *text, size_t len,
|
|
|
|
ngx_uint_t port);
|
2004-03-16 21:35:20 +08:00
|
|
|
size_t ngx_inet_ntop(int family, void *addr, u_char *text, size_t len);
|
2009-02-24 22:01:40 +08:00
|
|
|
ngx_int_t ngx_ptocidr(ngx_str_t *text, ngx_cidr_t *cidr);
|
2009-11-03 00:11:06 +08:00
|
|
|
ngx_int_t ngx_parse_addr(ngx_pool_t *pool, ngx_addr_t *addr, u_char *text,
|
|
|
|
size_t len);
|
2007-10-08 16:55:12 +08:00
|
|
|
ngx_int_t ngx_parse_url(ngx_pool_t *pool, ngx_url_t *u);
|
|
|
|
ngx_int_t ngx_inet_resolve_host(ngx_pool_t *pool, ngx_url_t *u);
|
2006-12-05 00:46:13 +08:00
|
|
|
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
|
2002-12-15 14:25:09 +08:00
|
|
|
#endif /* _NGX_INET_H_INCLUDED_ */
|