comparison src/http/ngx_http_upstream_round_robin.h @ 6701:d69964eb8335

Upstream: style, ngx_http_upstream_rr_peer_t.next moved.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 25 Jul 2016 16:23:35 +0300
parents 311d232ad803
children 29bf0dbc0a77
comparison
equal deleted inserted replaced
6700:0d2956dfc4e6 6701:d69964eb8335
40 #if (NGX_HTTP_SSL) 40 #if (NGX_HTTP_SSL)
41 void *ssl_session; 41 void *ssl_session;
42 int ssl_session_len; 42 int ssl_session_len;
43 #endif 43 #endif
44 44
45 ngx_http_upstream_rr_peer_t *next;
46
47 #if (NGX_HTTP_UPSTREAM_ZONE) 45 #if (NGX_HTTP_UPSTREAM_ZONE)
48 ngx_atomic_t lock; 46 ngx_atomic_t lock;
49 #endif 47 #endif
48
49 ngx_http_upstream_rr_peer_t *next;
50 }; 50 };
51 51
52 52
53 typedef struct ngx_http_upstream_rr_peers_s ngx_http_upstream_rr_peers_t; 53 typedef struct ngx_http_upstream_rr_peers_s ngx_http_upstream_rr_peers_t;
54 54