~jan-kneschke/mysql-proxy/packet-tracking-assertions

« back to all changes in this revision

Viewing changes to trunk/plugins/proxy/proxy-plugin.h

  • Committer: Kay Roepke
  • Date: 2008-06-09 09:42:54 UTC
  • Revision ID: kay@mysql.com-20080609094254-nmvzndymkzyl4cj2
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#ifndef _PROXY_PLUGIN_H
4
4
#define _PROXY_PLUGIN_H
5
5
 
6
 
/**
7
 
 * the shared information across all connections 
8
 
 *
9
 
 */
10
 
typedef struct {
11
 
        /**
12
 
         * our pool of backends
13
 
         *
14
 
         * GPtrArray<backend_t>
15
 
         */
16
 
        GPtrArray *backend_pool; 
17
 
 
18
 
        GTimeVal backend_last_check;
19
 
} proxy_global_state_t;
20
 
 
21
6
 
22
7
#endif  /* _PROXY_PLUGIN_H */
23
8