-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathngx_event_connect.h
120 lines (87 loc) · 3.59 KB
/
ngx_event_connect.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// annotated by chrono since 2016
//
// * ngx_peer_connection_s
/*
* Copyright (C) Igor Sysoev
* Copyright (C) Nginx, Inc.
*/
#ifndef _NGX_EVENT_CONNECT_H_INCLUDED_
#define _NGX_EVENT_CONNECT_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
#define NGX_PEER_KEEPALIVE 1
#define NGX_PEER_NEXT 2
#define NGX_PEER_FAILED 4
// nginx作为客户端发起的主动连接,连接上游服务器
typedef struct ngx_peer_connection_s ngx_peer_connection_t;
// 从upstream{}里获取一个上游server地址
typedef ngx_int_t (*ngx_event_get_peer_pt)(ngx_peer_connection_t *pc,
void *data);
// 释放一个上游地址,维护upstream{}负载均衡信息
typedef void (*ngx_event_free_peer_pt)(ngx_peer_connection_t *pc, void *data,
ngx_uint_t state);
typedef void (*ngx_event_notify_peer_pt)(ngx_peer_connection_t *pc,
void *data, ngx_uint_t type);
typedef ngx_int_t (*ngx_event_set_peer_session_pt)(ngx_peer_connection_t *pc,
void *data);
typedef void (*ngx_event_save_peer_session_pt)(ngx_peer_connection_t *pc,
void *data);
// nginx作为客户端发起的主动连接,连接上游服务器
// 用于实现upstream机制
// 对于要连接上游服务器才能处理的请求,需要使用两个连接对象
struct ngx_peer_connection_s {
// cycle里的连接对象,实际上使用了装饰模式
// 在ngx_event_connect_peer()里获取空闲连接并设置
// 连接上游服务器
ngx_connection_t *connection;
// 上游服务器的sockaddr
// 由下面的get/free操作
struct sockaddr *sockaddr;
socklen_t socklen;
ngx_str_t *name;
// 最大重试次数
ngx_uint_t tries;
// 连接开始的时间,即发起主动连接的时刻
// 开始的时间,只是秒数
ngx_msec_t start_time;
// 从upstream{}里获取一个上游server地址
// 由负载均衡模块的init_perr设置
// 例如ngx_stream_upstream_get_round_robin_peer
// 设置sockaddr、socklen、name用于连接
ngx_event_get_peer_pt get;
// 释放一个上游地址,维护upstream{}负载均衡信息
// 由负载均衡模块的init_perr设置
// ngx_stream_upstream_free_round_robin_peer
ngx_event_free_peer_pt free;
ngx_event_notify_peer_pt notify;
// get/free函数所需的参数
void *data;
#if (NGX_SSL || NGX_COMPAT)
ngx_event_set_peer_session_pt set_session;
ngx_event_save_peer_session_pt save_session;
#endif
// 本地地址
ngx_addr_t *local;
// 标记tcp/udp
int type;
// 接收缓冲区大小
int rcvbuf;
// 日志对象
ngx_log_t *log;
// 连接是否已经缓存
unsigned cached:1;
unsigned transparent:1;
unsigned so_keepalive:1;
unsigned down:1;
/* ngx_connection_log_error_e */
unsigned log_error:2;
NGX_COMPAT_BEGIN(2)
NGX_COMPAT_END
};
// 使用ngx_peer_connection_t连接上游服务器
// 可对比ngx_event_accept建立被动连接
ngx_int_t ngx_event_connect_peer(ngx_peer_connection_t *pc);
// 空函数,无任何操作
ngx_int_t ngx_event_get_peer(ngx_peer_connection_t *pc, void *data);
#endif /* _NGX_EVENT_CONNECT_H_INCLUDED_ */