odyssey/core/od.h

23 lines
289 B
C
Raw Normal View History

#ifndef OD_H_
#define OD_H_
/*
2016-11-08 11:18:58 +00:00
* odissey.
*
* PostgreSQL connection pooler and request router.
*/
typedef struct od_t od_t;
struct od_t {
odlog_t log;
odconfig_t config;
odscheme_t scheme;
};
void od_init(od_t*);
void od_free(od_t*);
int od_main(od_t*, int, char**);
#endif