X-Git-Url: https://git.syn-net.org/debian/?p=anytun.git;a=blobdiff_plain;f=src%2FplainPacket.h;h=6a1396ffd662808bb12fa6a98fcea6d848cea125;hp=8cf03688660196d867d61c14a0d0fc691cef2b9e;hb=ef0cacf2508418915d3f64b04003be3c13fed3cc;hpb=ece844834d2cecc028ce81ca283f5d441088580e diff --git a/src/plainPacket.h b/src/plainPacket.h index 8cf0368..6a1396f 100644 --- a/src/plainPacket.h +++ b/src/plainPacket.h @@ -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 * * 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 PlainPacket& src); void reinit(); payload_type_t* payload_type_; - u_int8_t* payload_; + uint8_t* payload_; }; #endif