From 14b43be3fbf6fd6e21de1924e77cb1bc94ec2aa6 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 13 Jan 2017 10:39:30 +0100 Subject: Make UdpPacket copyable, add API to get buffer --- src/UdpSocket.cpp | 2 +- src/UdpSocket.h | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/UdpSocket.cpp b/src/UdpSocket.cpp index ccdd7ed..981d713 100644 --- a/src/UdpSocket.cpp +++ b/src/UdpSocket.cpp @@ -2,7 +2,7 @@ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2017 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org diff --git a/src/UdpSocket.h b/src/UdpSocket.h index dfeaac1..f51e87c 100644 --- a/src/UdpSocket.h +++ b/src/UdpSocket.h @@ -2,7 +2,7 @@ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2017 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org @@ -24,8 +24,7 @@ along with ODR-DabMux. If not, see . */ -#ifndef _UDPSOCKET -#define _UDPSOCKET +#pragma once #ifdef HAVE_CONFIG_H # include "config.h" @@ -140,10 +139,6 @@ class UdpPacket */ UdpPacket(); UdpPacket(size_t initSize); - UdpPacket(const UdpPacket& packet) = delete; - const UdpPacket& operator=(const UdpPacket&) = delete; - UdpPacket(const UdpPacket&& packet) = delete; - const UdpPacket& operator=(const UdpPacket&&) = delete; /** Give the pointer to data. * @return The pointer @@ -167,9 +162,13 @@ class UdpPacket */ InetAddress getAddress(void); + const std::vector& getBuffer(void) const { + return m_buffer; + } + + private: std::vector m_buffer; InetAddress address; }; -#endif // _UDPSOCKET -- cgit v1.2.3