From 034fee969a22278b2d7bd93a2ad48664ebe69ac0 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 21 Jun 2007 00:42:47 +0000 Subject: first working version lacks still some features --- packetSource.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packetSource.h') diff --git a/packetSource.h b/packetSource.h index 3cd4fb5..d2902d9 100644 --- a/packetSource.h +++ b/packetSource.h @@ -37,8 +37,8 @@ class PacketSource public: virtual ~PacketSource() {} - virtual u_int32_t recv(Buffer buf, std::string addr, u_int16_t &port) = 0; - virtual void send(Buffer buf, std::string addr, u_int16_t port) = 0; + virtual u_int32_t recv(Buffer& buf, std::string addr, u_int16_t &port) = 0; + virtual void send(Buffer& buf, std::string addr, u_int16_t port) = 0; }; class UDPPacketSource : public PacketSource, public UDPSocket @@ -48,7 +48,7 @@ public: UDPPacketSource(u_int16_t port); UDPPacketSource(std::string localaddr, u_int16_t port); - u_int32_t recv(Buffer buf, std::string addr, u_int16_t &port); - void send(Buffer buf, std::string addr, u_int16_t port); + u_int32_t recv(Buffer& buf, std::string addr, u_int16_t &port); + void send(Buffer& buf, std::string addr, u_int16_t port); }; -- cgit v1.2.3