YSFClients/DGIdGateway/DGIdNetwork.h

67 lines
1.5 KiB
C
Raw Normal View History

2020-08-19 13:01:40 +01:00
/*
* Copyright (C) 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 DGIdNetwork_H
#define DGIdNetwork_H
2020-08-21 10:23:41 +01:00
#include <string>
2020-08-19 13:01:40 +01:00
2020-09-21 09:52:05 +01:00
enum DGID_STATUS {
DS_NOTOPEN,
DS_NOTLINKED,
DS_LINKING,
DS_LINKED
};
2020-08-19 13:01:40 +01:00
class CDGIdNetwork {
public:
virtual ~CDGIdNetwork() = 0;
virtual std::string getDesc(unsigned int dgId) = 0;
2020-08-21 10:23:41 +01:00
2020-09-22 13:09:03 +01:00
virtual unsigned int getDGId() = 0;
2020-08-19 13:01:40 +01:00
virtual bool open() = 0;
virtual void link() = 0;
2020-09-21 09:52:05 +01:00
virtual DGID_STATUS getStatus() = 0;
2020-08-20 12:16:57 +01:00
virtual void write(unsigned int dgId, const unsigned char* data) = 0;
2020-08-19 13:01:40 +01:00
virtual unsigned int read(unsigned int dgid, unsigned char* data) = 0;
virtual void clock(unsigned int ms) = 0;
virtual void unlink() = 0;
virtual void close() = 0;
// Allowed modes
unsigned char m_modes;
bool m_static;
unsigned int m_rfHangTime;
unsigned int m_netHangTime;
private:
};
#endif