2017-05-25 12:01:56 +00:00
|
|
|
#ifndef OD_IO_H
|
|
|
|
#define OD_IO_H
|
|
|
|
|
|
|
|
/*
|
2018-03-12 14:03:15 +00:00
|
|
|
* Odyssey.
|
2017-05-25 12:01:56 +00:00
|
|
|
*
|
2017-07-05 12:42:49 +00:00
|
|
|
* Advanced PostgreSQL connection pooler.
|
2017-05-25 12:01:56 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-26 13:50:17 +00:00
|
|
|
int od_read(machine_io_t*, shapito_stream_t*, uint32_t);
|
2017-07-06 13:36:14 +00:00
|
|
|
int od_write(machine_io_t*, shapito_stream_t*);
|
2017-08-17 15:15:19 +00:00
|
|
|
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);
|
2017-05-25 12:01:56 +00:00
|
|
|
|
|
|
|
#endif /* OD_IO_H */
|