From da049dfcfb229e70f2b80067b0de49aca49da018 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 24 Sep 2020 14:49:24 +0100 Subject: [PATCH] Remove odd file. --- .../IMRSNetwork.h | 113 ------------------ 1 file changed, 113 deletions(-) delete mode 100644 enc_temp_folder/c15e2db1834acc83c1fba3303b6f3a/IMRSNetwork.h diff --git a/enc_temp_folder/c15e2db1834acc83c1fba3303b6f3a/IMRSNetwork.h b/enc_temp_folder/c15e2db1834acc83c1fba3303b6f3a/IMRSNetwork.h deleted file mode 100644 index 7766c2a..0000000 --- a/enc_temp_folder/c15e2db1834acc83c1fba3303b6f3a/IMRSNetwork.h +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (C) 2009-2014,2016,2017,2018,2020 by Jonathan Naylor G4KLX - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -#ifndef IMRSNetwork_H -#define IMRSNetwork_H - -#include "DGIdNetwork.h" -#include "YSFDefines.h" -#include "UDPSocket.h" -#include "RingBuffer.h" -#include "YSFDefines.h" -#include "YSFFICH.h" - -#include -#include -#include - -struct IMRSDest { - sockaddr_storage m_addr; - unsigned int m_addrLen; - unsigned int m_dgId; -}; - -class IMRSDGId { -public: - IMRSDGId() : - m_dgId(0U), - m_name(), - m_seqNo(0U), - m_destinations(), - m_source(NULL), - m_dest(NULL), - m_debug(false), - m_buffer(1000U, "IMRS Buffer") - { - m_source = new unsigned char[YSF_CALLSIGN_LENGTH]; - m_dest = new unsigned char[YSF_CALLSIGN_LENGTH]; - } - - ~IMRSDGId() - { - delete[] m_source; - delete[] m_dest; - } - - unsigned int m_dgId; - std::string m_name; - uint16_t m_seqNo; - unsigned char* m_source; - unsigned char* m_dest; - std::vector m_destinations; - bool m_debug; - CRingBuffer m_buffer; -}; - -class CIMRSNetwork : public CDGIdNetwork { -public: - CIMRSNetwork(); - virtual ~CIMRSNetwork(); - - void addDGId(unsigned int dgId, const std::string& name, const std::vector& destinations, bool debug); - - virtual std::string getDesc(unsigned int dgId); - - virtual unsigned int getDGId(); - - virtual bool open(); - - virtual DGID_STATUS getStatus(); - - virtual void link(); - - virtual void write(unsigned int dgId, const unsigned char* data); - - virtual unsigned int read(unsigned int dgId, unsigned char* data); - - virtual void clock(unsigned int ms); - - virtual void unlink(); - - virtual void close(); - -private: - CUDPSocket m_socket; - std::vector m_dgIds; - DGID_STATUS m_state; - - IMRSDGId* find(const sockaddr_storage& address) const; - IMRSDGId* find(unsigned int dgId) const; - - bool writeHeaderTrailer(IMRSDGId* ptr, CYSFFICH& fich, const unsigned char* data); - bool writeData(IMRSDGId* ptr, CYSFFICH& fich, const unsigned char* data); - - void readHeaderTrailer(IMRSDGId* ptr, CYSFFICH& fich, const unsigned char* data); - void readData(IMRSDGId* ptr, CYSFFICH& fich, const unsigned char* data); -}; - -#endif