Test/Code Refactor in preparation for merge

This commit is contained in:
Joseph Henry 2015-11-20 01:08:38 -08:00
parent 9a25a627bb
commit 1f27022fa7
50 changed files with 1170 additions and 350 deletions

View file

@ -42,12 +42,10 @@ using namespace std;
namespace ZeroTier {
class NetconEthernetTap;
// prototypes
class TcpConnection;
/*
*
* TCP connection administered by service
*/
class TcpConnection
{
@ -79,8 +77,6 @@ namespace ZeroTier {
TcpConnection *conn;
Larg(NetconEthernetTap *_tap, TcpConnection *conn) : tap(_tap), conn(conn) {}
};
} // namespace ZeroTier
#endif