mirror of https://github.com/yandex/odyssey.git
19 lines
238 B
C
19 lines
238 B
C
![]() |
#ifndef SO_HEADER_H_
|
||
|
#define SO_HEADER_H_
|
||
|
|
||
|
/*
|
||
|
* sonata.
|
||
|
*
|
||
|
* Protocol-level PostgreSQL client library.
|
||
|
*/
|
||
|
|
||
|
typedef struct soheader_t soheader_t;
|
||
|
|
||
|
struct soheader_t {
|
||
|
uint8_t type;
|
||
|
uint32_t len;
|
||
|
uint8_t data[];
|
||
|
} so_packed;
|
||
|
|
||
|
#endif
|