odyssey/sources/tls.h

20 lines
429 B
C

#ifndef ODYSSEY_TLS_H
#define ODYSSEY_TLS_H
/*
* Odyssey.
*
* Scalable PostgreSQL connection pooler.
*/
machine_tls_t *od_tls_frontend(od_config_listen_t *);
int od_tls_frontend_accept(od_client_t *, od_logger_t *, od_config_listen_t *,
machine_tls_t *);
machine_tls_t *od_tls_backend(od_rule_storage_t *);
int od_tls_backend_connect(od_server_t *, od_logger_t *, od_rule_storage_t *);
#endif /* ODYSSEY_TLS_H */