2016-11-10 12:39:25 +00:00
|
|
|
#ifndef OD_FE_H_
|
|
|
|
#define OD_FE_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* odissey.
|
|
|
|
*
|
|
|
|
* PostgreSQL connection pooler and request router.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int od_festartup(odclient_t*);
|
2016-11-16 13:15:14 +00:00
|
|
|
int od_fekey(odclient_t*);
|
2016-11-10 12:39:25 +00:00
|
|
|
int od_feauth(odclient_t*);
|
2016-11-11 12:26:21 +00:00
|
|
|
int od_feready(odclient_t*);
|
2016-11-11 11:43:36 +00:00
|
|
|
int od_feerror(odclient_t*, char*, ...);
|
2016-11-10 12:39:25 +00:00
|
|
|
void od_feclose(odclient_t*);
|
|
|
|
|
|
|
|
#endif
|