odyssey/core/od_pooler.c

31 lines
438 B
C
Raw Normal View History

2016-11-09 11:30:06 +00:00
/*
* odissey.
*
* PostgreSQL connection pooler and request router.
*/
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
2016-11-09 11:33:25 +00:00
#include <flint.h>
2016-11-09 11:30:06 +00:00
#include "od_macro.h"
#include "od_list.h"
#include "od_log.h"
#include "od_scheme.h"
#include "od_lex.h"
#include "od_config.h"
#include "od_server.h"
#include "od_pool.h"
#include "od.h"
#include "od_pooler.h"
int od_pooler(od_t *od)
{
(void)od;
return 0;
}