memgraph/include/communication/bolt/v1/config.hpp

15 lines
186 B
C++

#pragma once
#include <cstddef>
namespace bolt
{
namespace config
{
static constexpr size_t N = 65535; /* chunk size */
static constexpr size_t C = N + 2; /* end mark */
}
}