NXDNClients/NXDNGateway/NXDNNetwork.h

52 lines
1.6 KiB
C
Raw Normal View History

2018-03-13 18:16:48 -04:00
/*
2024-01-29 11:00:25 -05:00
* Copyright (C) 2009-2014,2016,2018,2020,2024 by Jonathan Naylor G4KLX
2018-03-13 18:16:48 -04:00
*
* 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 NXDNNetwork_H
#define NXDNNetwork_H
#include "UDPSocket.h"
#include <cstdint>
#include <string>
class CNXDNNetwork {
public:
CNXDNNetwork(unsigned short port, const std::string& callsign, bool debug);
2018-03-13 18:16:48 -04:00
~CNXDNNetwork();
bool open();
2020-09-03 10:12:03 -04:00
bool writeData(const unsigned char* data, unsigned int length, unsigned short srcId, unsigned short dstId, bool grp, const sockaddr_storage& addr, unsigned int addrLen);
2018-03-13 18:16:48 -04:00
2020-09-03 10:12:03 -04:00
bool writePoll(const sockaddr_storage& addr, unsigned int addrLen, unsigned short tg);
2018-03-13 18:16:48 -04:00
2020-09-03 10:12:03 -04:00
bool writeUnlink(const sockaddr_storage& addr, unsigned int addrLen, unsigned short tg);
2018-03-13 18:16:48 -04:00
2020-09-03 10:12:03 -04:00
unsigned int readData(unsigned char* data, unsigned int length, sockaddr_storage& addr, unsigned int& addrLen);
2018-03-13 18:16:48 -04:00
void close();
private:
2024-01-29 11:00:25 -05:00
std::string m_callsign;
CUDPSocket m_socket4;
CUDPSocket m_socket6;
2024-01-29 11:00:25 -05:00
bool m_debug;
2018-03-13 18:16:48 -04:00
};
#endif