diff options
Diffstat (limited to 'modules/io_codec/examples/echo.hpp')
-rw-r--r-- | modules/io_codec/examples/echo.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/io_codec/examples/echo.hpp b/modules/io_codec/examples/echo.hpp index 7a1c6ab..71be1a0 100644 --- a/modules/io_codec/examples/echo.hpp +++ b/modules/io_codec/examples/echo.hpp @@ -1,4 +1,9 @@ #pragma once +#include <string> +#include <cstdint> + namespace saw { +constexpr std::string echo_address = "::1"; +constexpr uint16_t echo_port = 4322; } |