Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ngx_http_upstream_round_robin.h
Go to the documentation of this file.
1 
2 /*
3  * Copyright (C) Igor Sysoev
4  * Copyright (C) Nginx, Inc.
5  */
6 
7 
8 #ifndef _NGX_HTTP_UPSTREAM_ROUND_ROBIN_H_INCLUDED_
9 #define _NGX_HTTP_UPSTREAM_ROUND_ROBIN_H_INCLUDED_
10 
11 
12 #include <ngx_config.h>
13 #include <ngx_core.h>
14 #include <ngx_http.h>
15 
16 
17 typedef struct {
18  struct sockaddr *sockaddr;
19  socklen_t socklen;
21 
25 
27  time_t accessed;
28  time_t checked;
29 
31  time_t fail_timeout;
32 
33  ngx_uint_t down; /* unsigned down:1; */
34 
35 #if (NGX_HTTP_SSL)
36  ngx_ssl_session_t *ssl_session; /* local to a process */
37 #endif
39 
40 
42 
45 
46  /* ngx_mutex_t *mutex; */
47 
49 
50  unsigned single:1;
51  unsigned weighted:1;
52 
54 
56 
58 };
59 
60 
61 typedef struct {
64  uintptr_t *tried;
65  uintptr_t data;
67 
68 
76  void *data);
78  void *data, ngx_uint_t state);
79 
80 #if (NGX_HTTP_SSL)
82  ngx_http_upstream_set_round_robin_peer_session(ngx_peer_connection_t *pc,
83  void *data);
84 void ngx_http_upstream_save_round_robin_peer_session(ngx_peer_connection_t *pc,
85  void *data);
86 #endif
87 
88 
89 #endif /* _NGX_HTTP_UPSTREAM_ROUND_ROBIN_H_INCLUDED_ */