gnss-sim/3rdparty/boost/mysql/defaults.hpp

31 lines
870 B
C++

//
// Copyright (c) 2019-2024 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_MYSQL_DEFAULTS_HPP
#define BOOST_MYSQL_DEFAULTS_HPP
#include <boost/config.hpp>
#include <cstddef>
namespace boost {
namespace mysql {
/// The default TCP port for the MySQL protocol.
BOOST_INLINE_CONSTEXPR unsigned short default_port = 3306;
/// The default TCP port for the MySQL protocol, as a string. Useful for hostname resolution.
BOOST_INLINE_CONSTEXPR const char* default_port_string = "3306";
/// The default initial size of the connection's internal buffer, in bytes.
BOOST_INLINE_CONSTEXPR std::size_t default_initial_read_buffer_size = 1024;
} // namespace mysql
} // namespace boost
#endif