udp tunnels

This commit is contained in:
Jeff Becker
2016-08-21 15:02:17 -04:00
parent c16632d99a
commit aa3723d2bd
6 changed files with 338 additions and 20 deletions

5
Tag.h
View File

@@ -50,6 +50,11 @@ namespace data {
return true;
}
/** fill with a value */
void Fill(uint8_t c) {
memset(m_Buf, c, sz);
}
std::string ToBase64 () const
{
char str[sz*2];