odyssey/sources/io.h

17 lines
398 B
C
Raw Normal View History

#ifndef OD_IO_H
#define OD_IO_H
/*
2018-03-12 14:03:15 +00:00
* Odyssey.
*
2017-07-05 12:42:49 +00:00
* Advanced PostgreSQL connection pooler.
*/
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*);
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 /* OD_IO_H */