odyssey/sources/header.h

20 lines
269 B
C

#ifndef SHAPITO_HEADER_H
#define SHAPITO_HEADER_H
/*
* Shapito.
*
* Protocol-level PostgreSQL client library.
*/
typedef struct so_header so_header_t;
struct so_header
{
uint8_t type;
uint32_t len;
char data[];
} so_packed;
#endif /* SHAPITO_HEADER_H */