fix broken build from NetworkPacket

This commit is contained in:
Stephen Birarda 2014-02-07 13:46:59 -08:00
parent 455442088c
commit 7c6d3cd01f
2 changed files with 4 additions and 4 deletions

View file

@ -8,9 +8,11 @@
// A really simple class that stores a network packet between being received and being processed
//
#include <cassert>
#include <cstring>
#include <QtDebug>
#include <cassert>
#include "SharedUtil.h"
#include "NetworkPacket.h"

View file

@ -18,9 +18,7 @@
#include <ifaddrs.h>
#endif
#include "HifiSockAddr.h"
#include "SharedUtil.h" // for MAX_PACKET_SIZE
#include "NodeList.h"
/// Storage of not-yet processed inbound, or not yet sent outbound generic UDP network packet
class NetworkPacket {