summaryrefslogtreecommitdiff
path: root/plainPacket.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-02-19 17:31:04 +0000
committerChristian Pointner <equinox@anytun.org>2008-02-19 17:31:04 +0000
commit3d174037c175e33b0b57c0639ab7440e9f5d6abc (patch)
tree11deb98d33858fafbc8e61ffe414f8be0cbc458e /plainPacket.h
parentminor changes (diff)
replaces cypher with cipher
Diffstat (limited to 'plainPacket.h')
-rw-r--r--plainPacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plainPacket.h b/plainPacket.h
index 39029c2..176d841 100644
--- a/plainPacket.h
+++ b/plainPacket.h
@@ -34,7 +34,7 @@
#include "datatypes.h"
#include "buffer.h"
-class Cypher;
+class Cipher;
/**
* plain SATP packet class<br>
* includes payload_type and payload
@@ -97,7 +97,7 @@ private:
u_int32_t max_length_;
payload_type_t* payload_type_;
protected:
- friend class Cypher;
+ friend class Cipher;
u_int8_t * complete_payload_;
u_int32_t complete_payload_length_;
};