mirror of https://github.com/nostar/urfd.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.8 KiB
85 lines
2.8 KiB
// Copyright © 2016 Jean-Luc Deltombe (LX3JL). All rights reserved.
|
|
|
|
// urfd -- The universal reflector
|
|
// Copyright © 2021 Thomas A. Early N7TAE
|
|
//
|
|
// 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
#include "Version.h"
|
|
#include "Timer.h"
|
|
#include "IP.h"
|
|
#include "Callsign.h"
|
|
#include "Client.h"
|
|
|
|
class CPeer
|
|
{
|
|
public:
|
|
// constructors
|
|
CPeer();
|
|
CPeer(const CCallsign &, const CIp &, const char *, const CVersion &);
|
|
CPeer(const CPeer &) = delete;
|
|
|
|
// destructor
|
|
virtual ~CPeer();
|
|
|
|
// operators
|
|
bool operator ==(const CPeer &) const;
|
|
|
|
// get
|
|
const CCallsign &GetCallsign(void) const { return m_Callsign; }
|
|
const CIp &GetIp(void) const { return m_Ip; }
|
|
char *GetReflectorModules(void) { return m_ReflectorModules; }
|
|
|
|
// set
|
|
|
|
// identity
|
|
virtual EProtocol GetProtocol(void) const { return EProtocol::none; }
|
|
virtual EProtoRev GetProtocolRevision(void) const { return EProtoRev::original; }
|
|
virtual const char *GetProtocolName(void) const { return "NONE"; }
|
|
|
|
// status
|
|
virtual bool IsAMaster(void) const;
|
|
virtual void Alive(void);
|
|
virtual bool IsAlive(void) const { return false; }
|
|
virtual void Heard(void) { m_LastHeardTime = std::time(nullptr); }
|
|
|
|
// clients access
|
|
int GetNbClients(void) const { return (int)m_Clients.size(); }
|
|
void ClearClients(void) { m_Clients.clear(); }
|
|
|
|
// pass-thru
|
|
std::list<std::shared_ptr<CClient>>::iterator begin() { return m_Clients.begin(); }
|
|
std::list<std::shared_ptr<CClient>>::iterator end() { return m_Clients.end(); }
|
|
std::list<std::shared_ptr<CClient>>::const_iterator cbegin() const { return m_Clients.cbegin(); }
|
|
std::list<std::shared_ptr<CClient>>::const_iterator cend() const { return m_Clients.cend(); }
|
|
|
|
// reporting
|
|
virtual void WriteXml(std::ofstream &);
|
|
|
|
protected:
|
|
// data
|
|
CCallsign m_Callsign;
|
|
CIp m_Ip;
|
|
char m_ReflectorModules[27];
|
|
CVersion m_Version;
|
|
std::list<std::shared_ptr<CClient>> m_Clients;
|
|
|
|
// status
|
|
CTimer m_LastKeepaliveTime;
|
|
std::time_t m_ConnectTime;
|
|
std::time_t m_LastHeardTime;
|
|
};
|