Imported Upstream version 0.3.4
[anytun.git] / src / plainPacket.h
index 8cf0368..6a1396f 100644 (file)
@@ -11,7 +11,7 @@
  *  tunneling and relaying of packets of any protocol.
  *
  *
- *  Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, 
+ *  Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl,
  *                          Christian Pointner <satp@wirdorange.org>
  *
  *  This file is part of Anytun.
@@ -47,17 +47,17 @@ class Cipher;
 #define PAYLOAD_TYPE_TAP 0x6558
 #define PAYLOAD_TYPE_TUN 0x0000
 #define PAYLOAD_TYPE_TUN4 0x0800
-#define PAYLOAD_TYPE_TUN6 0x86DD 
+#define PAYLOAD_TYPE_TUN6 0x86DD
 
 class PlainPacket : public Buffer
 {
 public:
   /**
    * Packet constructor
-   * @param the length of the payload 
+   * @param the length of the payload
    * @param allow reallocation of buffer
    */
-  PlainPacket(u_int32_t payload_length, bool allow_realloc = false);
+  PlainPacket(uint32_t payload_length, bool allow_realloc = false);
 
   /**
    * Packet destructor
@@ -68,11 +68,11 @@ public:
    * Get the length of the header
    * @return the length of the header
    */
-  static u_int32_t getHeaderLength();
+  static uint32_t getHeaderLength();
 
   /**
    * Get the payload type
-   * @return the id of the payload type 
+   * @return the id of the payload type
    */
   payload_type_t getPayloadType() const;
 
@@ -86,31 +86,31 @@ public:
    * Get the length of the payload
    * @return the length of the payload
    */
-  u_int32_t getPayloadLength() const;
+  uint32_t getPayloadLength() const;
 
   /**
    * Set the length of the payload
    * @param length length of the payload
    */
-  void setPayloadLength(u_int32_t payload_length);
+  void setPayloadLength(uint32_t payload_length);
 
   /**
    * Get the the payload
    * @return the Pointer to the payload
    */
-  u_int8_t* getPayload();
+  uint8_t* getPayload();
 
-//  NetworkAddress getSrcAddr() const;
+  //  NetworkAddress getSrcAddr() const;
   NetworkAddress getDstAddr() const;
 
 private:
   PlainPacket();
-  PlainPacket(const PlainPacket &src);
+  PlainPacket(const PlainPacketsrc);
 
   void reinit();
 
   payload_type_t* payload_type_;
-  u_int8_t* payload_;
+  uint8_t* payload_;
 };
 
 #endif