mirror of https://github.com/yandex/odyssey.git
17 lines
360 B
C
17 lines
360 B
C
#ifndef OD_IO_H
|
|
#define OD_IO_H
|
|
|
|
/*
|
|
* Odissey.
|
|
*
|
|
* Advanced PostgreSQL connection pooler.
|
|
*/
|
|
|
|
int od_read(machine_io_t*, so_stream_t*, int);
|
|
int od_write(machine_io_t*, so_stream_t*);
|
|
int od_getpeername(machine_io_t*, char*, int);
|
|
int od_getsockaddrname(struct sockaddr*, char*, int);
|
|
int od_getaddrname(struct addrinfo*, char*, int);
|
|
|
|
#endif /* OD_IO_H */
|