memgraph/include/communication/bolt/v1/config.hpp
2016-12-21 11:35:04 +01:00

18 lines
198 B
C++

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