2018-08-28 14:43:46 +00:00
|
|
|
#ifndef ODYSSEY_AUTH_H
|
|
|
|
#define ODYSSEY_AUTH_H
|
2017-05-26 11:49:17 +00:00
|
|
|
|
|
|
|
/*
|
2018-03-12 14:03:15 +00:00
|
|
|
* Odyssey.
|
2017-05-26 11:49:17 +00:00
|
|
|
*
|
2018-04-04 13:19:58 +00:00
|
|
|
* Scalable PostgreSQL connection pooler.
|
2020-04-02 11:00:56 +00:00
|
|
|
*/
|
2017-05-26 11:49:17 +00:00
|
|
|
|
2020-12-28 10:43:31 +00:00
|
|
|
int od_auth_frontend(od_client_t *);
|
2021-04-19 12:27:19 +00:00
|
|
|
int od_auth_backend(od_server_t *, machine_msg_t *, od_client_t *);
|
2017-05-26 11:49:17 +00:00
|
|
|
|
2018-08-28 14:43:46 +00:00
|
|
|
#endif /* ODYSSEY_AUTH_H */
|