mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
21 lines
408 B
C++
21 lines
408 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
#include <string>
|
|
|
|
#include "socktype.h"
|
|
|
|
namespace qfe
|
|
{
|
|
namespace socketio
|
|
{
|
|
void readn(int fd, void* buf, const size_t wanted);
|
|
size_t writen(int fd, const void* data, const size_t nbytes);
|
|
uint32_t readNumber32(SockType);
|
|
std::string readString(SockType);
|
|
void writeString(SockType, const std::string&);
|
|
|
|
} // namespace socketio
|
|
} // namespace qfe
|