odyssey/src/od_system.h

22 lines
285 B
C
Raw Normal View History

#ifndef OD_SYSTEM_H
#define OD_SYSTEM_H
/*
2017-06-07 11:50:58 +00:00
* ODISSEY.
*
* PostgreSQL connection pooler and request router.
*/
typedef struct od_system od_system_t;
struct od_system
{
void *instance;
void *pooler;
void *router;
void *periodic;
2017-06-01 12:45:49 +00:00
void *relay_pool;
};
#endif /* OD_SYSTEM_H */