summaryrefslogtreecommitdiff
path: root/node/PacketDecoder.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-05 12:16:25 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-05 12:16:25 -0400
commitb9aeec9f298415746f92da8444014093bb2a33c2 (patch)
tree8f73cf1516ddd6c25f983564950b646150c55828 /node/PacketDecoder.hpp
parentbf5c07f79a0f78e714fe47a5d1e09330022261ea (diff)
downloadinfinitytier-b9aeec9f298415746f92da8444014093bb2a33c2.tar.gz
infinitytier-b9aeec9f298415746f92da8444014093bb2a33c2.zip
Documentation improvements and some very minor pre-emptive security stuff.
Diffstat (limited to 'node/PacketDecoder.hpp')
-rw-r--r--node/PacketDecoder.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/PacketDecoder.hpp b/node/PacketDecoder.hpp
index 51408ba5..fc5a0c66 100644
--- a/node/PacketDecoder.hpp
+++ b/node/PacketDecoder.hpp
@@ -65,7 +65,7 @@ public:
_receiveTime(Utils::now()),
_localPort(localPort),
_remoteAddress(remoteAddress),
- _step(DECODE_STEP_WAITING_FOR_SENDER_LOOKUP),
+ _step(DECODE_WAITING_FOR_SENDER_LOOKUP),
__refCount()
{
}
@@ -131,8 +131,8 @@ private:
InetAddress _remoteAddress;
enum {
- DECODE_STEP_WAITING_FOR_SENDER_LOOKUP, // on initial receipt, we need peer's identity
- DECODE_STEP_WAITING_FOR_ORIGINAL_SUBMITTER_LOOKUP // this only applies to MULTICAST_FRAME
+ DECODE_WAITING_FOR_SENDER_LOOKUP, // on initial receipt, we need peer's identity
+ DECODE_WAITING_FOR_MULTICAST_FRAME_ORIGINAL_SENDER_LOOKUP,
} _step;
AtomicCounter __refCount;