odyssey/core/od_fe.h

18 lines
315 B
C
Raw Normal View History

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(od_client_t*);
int od_fekey(od_client_t*);
int od_fesetup(od_client_t*);
int od_feready(od_client_t*);
int od_feerror(od_client_t*, char*, ...);
void od_feclose(od_client_t*);
2016-11-10 12:39:25 +00:00
#endif