From e340011d211618884ab85e1245c4b2f2e175c48e Mon Sep 17 00:00:00 2001 From: Erwin Nindl Date: Wed, 12 Sep 2007 12:14:11 +0000 Subject: removed overloaded std::ostream& << operator because of problems with stdc++ library --- buffer.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'buffer.h') diff --git a/buffer.h b/buffer.h index fc9d78b..0506e98 100644 --- a/buffer.h +++ b/buffer.h @@ -33,8 +33,6 @@ #include "datatypes.h" -#include - class TunDevice; class UDPPacketSource; @@ -54,7 +52,7 @@ public: u_int8_t* getBuf(); u_int8_t& operator[](u_int32_t index); u_int8_t operator[](u_int32_t index) const; - friend std::ostream& operator<<(std::ostream& output, const Buffer &src); + void printHexDump() const; protected: operator u_int8_t*(); // just for write/read tun and packetSource @@ -65,6 +63,7 @@ protected: u_int8_t *buf_; u_int32_t length_; + }; #endif -- cgit v1.2.3