mirror of https://github.com/yandex/odyssey.git
24 lines
408 B
C
24 lines
408 B
C
![]() |
#ifndef OD_TLS_H
|
||
|
#define OD_TLS_H
|
||
|
|
||
|
/*
|
||
|
* odissey.
|
||
|
*
|
||
|
* PostgreSQL connection pooler and request router.
|
||
|
*/
|
||
|
|
||
|
machine_tls_t
|
||
|
od_tls_frontend(od_scheme_t*);
|
||
|
|
||
|
int
|
||
|
od_tls_frontend_accept(od_client_t*, od_log_t*, od_scheme_t*,
|
||
|
machine_tls_t);
|
||
|
|
||
|
machine_tls_t
|
||
|
od_tls_backend(od_schemeserver_t*);
|
||
|
|
||
|
int
|
||
|
od_tls_backend_connect(od_server_t*, od_log_t*, od_schemeserver_t*);
|
||
|
|
||
|
#endif /* OD_TLS_H */
|