odyssey/core/odissey.c

33 lines
515 B
C
Raw Normal View History

/*
2016-11-08 11:18:58 +00:00
* odissey.
*
* PostgreSQL connection pooler and request router.
*/
#include <stdlib.h>
2016-11-15 11:38:31 +00:00
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
2016-11-25 12:38:52 +00:00
#include <machinarium.h>
2016-11-09 11:33:25 +00:00
2016-11-07 10:07:23 +00:00
#include "od_macro.h"
#include "od_list.h"
2016-11-28 13:03:09 +00:00
#include "od_pid.h"
2016-11-28 14:47:39 +00:00
#include "od_syslog.h"
2016-11-07 11:29:49 +00:00
#include "od_log.h"
#include "od_scheme.h"
#include "od_lex.h"
2016-11-07 11:29:49 +00:00
#include "od_config.h"
#include "od.h"
2016-11-07 10:07:23 +00:00
int main(int argc, char *argv[])
{
od_t odissey;
od_init(&odissey);
int rc = od_main(&odissey, argc, argv);
od_free(&odissey);
return rc;
}