mirror of https://github.com/yandex/odyssey.git
29 lines
418 B
C
29 lines
418 B
C
|
|
||
|
/*
|
||
|
* odissey.
|
||
|
*
|
||
|
* PostgreSQL connection pooler and request router.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#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;
|
||
|
}
|