udp tunnels

This commit is contained in:
Jeff Becker 2016-08-21 15:02:17 -04:00
parent c16632d99a
commit aa3723d2bd
No known key found for this signature in database
GPG key ID: AB950234D6EA286B
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];