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>
|
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
#define NGX_PARSE_URL_INET 1
|
|
|
|
#define NGX_PARSE_URL_UNIX 2
|
|
|
|
|
|
|
|
|
2004-05-25 23:28:46 +08:00
|
|
|
typedef struct {
|
2006-10-24 21:06:55 +08:00
|
|
|
in_addr_t addr;
|
|
|
|
in_addr_t mask;
|
2004-05-25 23:28:46 +08:00
|
|
|
} ngx_inet_cidr_t;
|
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
typedef struct {
|
|
|
|
struct sockaddr *sockaddr;
|
|
|
|
socklen_t socklen;
|
|
|
|
|
|
|
|
ngx_str_t name;
|
|
|
|
char *uri_separator;
|
|
|
|
|
2006-07-08 00:33:19 +08:00
|
|
|
ngx_uint_t current_weight;
|
2006-05-23 22:54:58 +08:00
|
|
|
ngx_uint_t weight;
|
|
|
|
|
|
|
|
ngx_uint_t fails;
|
|
|
|
time_t accessed;
|
|
|
|
|
|
|
|
ngx_uint_t max_fails;
|
|
|
|
time_t fail_timeout;
|
|
|
|
|
|
|
|
#if (NGX_SSL)
|
|
|
|
ngx_ssl_session_t *ssl_session;
|
|
|
|
#endif
|
|
|
|
} ngx_peer_t;
|
|
|
|
|
|
|
|
|
|
|
|
struct ngx_peers_s {
|
|
|
|
ngx_uint_t current;
|
|
|
|
|
|
|
|
ngx_uint_t number;
|
|
|
|
ngx_uint_t last_cached;
|
|
|
|
|
|
|
|
/* ngx_mutex_t *mutex; */
|
|
|
|
ngx_connection_t **cached;
|
|
|
|
|
|
|
|
ngx_peer_t peer[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
typedef union {
|
|
|
|
in_addr_t in_addr;
|
|
|
|
} ngx_url_addr_t;
|
|
|
|
|
|
|
|
|
2006-05-23 22:54:58 +08:00
|
|
|
typedef struct {
|
2006-10-24 21:06:55 +08:00
|
|
|
ngx_int_t type;
|
|
|
|
|
|
|
|
ngx_peers_t *peers;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
ngx_str_t url;
|
|
|
|
ngx_str_t host;
|
|
|
|
ngx_str_t host_header;
|
|
|
|
ngx_str_t port;
|
|
|
|
ngx_str_t uri;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
in_port_t portn;
|
|
|
|
in_port_t default_portn;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
unsigned listen:1;
|
|
|
|
unsigned uri_part:1;
|
|
|
|
unsigned upstream:1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
unsigned default_port:1;
|
|
|
|
unsigned wildcard:1;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
ngx_url_addr_t addr;
|
2006-05-23 22:54:58 +08:00
|
|
|
|
2006-10-24 21:06:55 +08:00
|
|
|
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);
|
2006-10-24 22:18:35 +08:00
|
|
|
ngx_int_t ngx_parse_url(ngx_conf_t *cf, ngx_url_t *u);
|
2006-05-23 22:54:58 +08:00
|
|
|
ngx_peers_t *ngx_inet_resolve_peer(ngx_conf_t *cf, ngx_str_t *name,
|
|
|
|
in_port_t port);
|
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_ */
|