summaryrefslogtreecommitdiff
path: root/modules/io/examples/echo.hpp
blob: 2201457700e335c4feb3eb9b85afd1056f59243f (plain)
1
2
3
4
5
6
7
8
#pragma once

struct message {
	std::array<uint8_t, 256> data;
	uint64_t already_read = 0;
};

constexpr std::string_view message_content = "Hello! This is an echo msg.";