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>
|
|
|
|
|
|
|
|
|
2004-05-25 23:28:46 +08:00
|
|
|
typedef struct {
|
2006-12-05 00:46:13 +08:00
|
|
|
in_addr_t addr;
|
|
|
|
in_addr_t mask;
|
2004-05-25 23:28:46 +08:00
|
|
|
} ngx_inet_cidr_t;
|
|
|
|
|
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
typedef union {
|
2006-12-05 00:46:13 +08:00
|
|
|
in_addr_t in_addr;
|
2006-10-24 21:06:55 +08:00
|
|
|
} ngx_url_addr_t;
|
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
typedef struct {
|
2006-12-05 00:46:13 +08:00
|
|
|
struct sockaddr *sockaddr;
|
|
|
|
socklen_t socklen;
|
|
|
|
ngx_str_t name;
|
|
|
|
} ngx_peer_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 {
|
|
|
|
ngx_int_t type;
|
|
|
|
|
|
|
|
ngx_str_t url;
|
|
|
|
ngx_str_t host;
|
|
|
|
ngx_str_t uri;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-12-13 00:46:16 +08:00
|
|
|
in_port_t port;
|
|
|
|
in_port_t default_port;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-12-05 00:46:13 +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
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
unsigned wildcard:1;
|
|
|
|
unsigned no_port:1;
|
2006-12-13 00:46:16 +08:00
|
|
|
unsigned unix_socket:1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
ngx_url_addr_t addr;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-12-05 00:46:13 +08:00
|
|
|
ngx_peer_addr_t *addrs;
|
|
|
|
ngx_uint_t naddrs;
|
|
|
|
|
|
|
|
char *err;
|
2006-05-23 22:54:58 +08:00
|
|
|
} ngx_url_t;
|
|
|
|
|
|
|
|
|
2006-10-24 22:18:35 +08:00
|
|
|
size_t ngx_sock_ntop(int family, struct sockaddr *sa, u_char *text, size_t len);
|
2004-03-16 21:35:20 +08:00
|
|
|
size_t ngx_inet_ntop(int family, void *addr, u_char *text, size_t len);
|
2004-05-25 23:28:46 +08:00
|
|
|
ngx_int_t ngx_ptocidr(ngx_str_t *text, void *cidr);
|
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_ */
|