123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_MYSQL_DEFAULTS_HPP
- #define BOOST_MYSQL_DEFAULTS_HPP
- #include <boost/config.hpp>
- #include <cstddef>
- namespace boost {
- namespace mysql {
- BOOST_INLINE_CONSTEXPR unsigned short default_port = 3306;
- BOOST_INLINE_CONSTEXPR const char* default_port_string = "3306";
- BOOST_INLINE_CONSTEXPR std::size_t default_initial_read_buffer_size = 1024;
- }
- }
- #endif
|