summaryrefslogtreecommitdiff
path: root/node/IncomingPacket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/IncomingPacket.hpp')
-rw-r--r--node/IncomingPacket.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/node/IncomingPacket.hpp b/node/IncomingPacket.hpp
index e1a1959f..33f12a5f 100644
--- a/node/IncomingPacket.hpp
+++ b/node/IncomingPacket.hpp
@@ -83,7 +83,6 @@ public:
_receiveTime(Utils::now()),
_fromSock(fromSock),
_remoteAddress(remoteAddress),
- _step(DECODE_WAITING_FOR_SENDER_LOOKUP),
__refCount()
{
}
@@ -133,13 +132,6 @@ private:
uint64_t _receiveTime;
SharedPtr<Socket> _fromSock;
InetAddress _remoteAddress;
-
- enum {
- DECODE_WAITING_FOR_SENDER_LOOKUP, // on initial receipt, we need peer's identity
- DECODE_WAITING_FOR_MULTICAST_FRAME_ORIGINAL_SENDER_LOOKUP,
- DECODE_WAITING_FOR_NETWORK_MEMBERSHIP_CERTIFICATE_SIGNER_LOOKUP
- } _step;
-
AtomicCounter __refCount;
};