mirror of https://github.com/yandex/odyssey.git
15 lines
311 B
C
15 lines
311 B
C
|
#ifndef ODYSSEY_DNS_H
|
||
|
#define ODYSSEY_DNS_H
|
||
|
|
||
|
/*
|
||
|
* Odyssey.
|
||
|
*
|
||
|
* Scalable PostgreSQL connection pooler.
|
||
|
*/
|
||
|
|
||
|
int od_getaddrname(struct addrinfo*, char*, int, int, int);
|
||
|
int od_getpeername(machine_io_t*, char*, int, int, int);
|
||
|
int od_getsockname(machine_io_t*, char*, int, int, int);
|
||
|
|
||
|
#endif /* ODYSSEY_DNS_H */
|