2021-02-16 22:34:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 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 UDPController_H
|
|
|
|
#define UDPController_H
|
|
|
|
|
2021-02-17 21:36:47 +00:00
|
|
|
#include "ModemPort.h"
|
2021-02-17 19:35:28 +00:00
|
|
|
#include "RingBuffer.h"
|
2021-02-16 22:34:25 +00:00
|
|
|
#include "UDPSocket.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2021-02-17 21:36:47 +00:00
|
|
|
class CUDPController : public IModemPort {
|
2021-02-16 22:34:25 +00:00
|
|
|
public:
|
2021-04-25 10:10:35 +00:00
|
|
|
CUDPController(const std::string& modemAddress, unsigned int modemPort, const std::string& localAddress, unsigned int localPort);
|
2021-02-16 22:34:25 +00:00
|
|
|
virtual ~CUDPController();
|
|
|
|
|
|
|
|
virtual bool open();
|
|
|
|
|
|
|
|
virtual int read(unsigned char* buffer, unsigned int length);
|
|
|
|
|
|
|
|
virtual int write(const unsigned char* buffer, unsigned int length);
|
|
|
|
|
|
|
|
virtual void close();
|
2021-08-13 19:00:17 +00:00
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
int setNonblock(bool nonblock) { return 0; }
|
|
|
|
#endif
|
2021-02-16 22:34:25 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CUDPSocket m_socket;
|
|
|
|
sockaddr_storage m_addr;
|
|
|
|
unsigned int m_addrLen;
|
2021-02-17 19:35:28 +00:00
|
|
|
CRingBuffer<unsigned char> m_buffer;
|
2021-02-16 22:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|