mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
96 lines
2.1 KiB
C++
96 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) 2012,2013,2018 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.
|
|
*/
|
|
|
|
#include "HeardData.h"
|
|
|
|
CHeardData::CHeardData() :
|
|
m_reflector(),
|
|
m_repeater(),
|
|
m_user(),
|
|
m_ext(),
|
|
m_address(),
|
|
m_port(0U)
|
|
{
|
|
}
|
|
|
|
CHeardData::CHeardData(const CHeardData& data) :
|
|
m_reflector(data.m_reflector),
|
|
m_repeater(data.m_repeater),
|
|
m_user(data.m_user),
|
|
m_ext(data.m_ext),
|
|
m_address(data.m_address),
|
|
m_port(data.m_port)
|
|
{
|
|
}
|
|
|
|
CHeardData::CHeardData(const CHeaderData& data, const wxString& repeater, const wxString& reflector) :
|
|
m_reflector(reflector),
|
|
m_repeater(repeater),
|
|
m_user(),
|
|
m_ext(),
|
|
m_address(),
|
|
m_port()
|
|
{
|
|
m_user = data.getMyCall1();
|
|
m_ext = data.getMyCall2();
|
|
}
|
|
|
|
CHeardData::~CHeardData()
|
|
{
|
|
}
|
|
|
|
bool CHeardData::setIcomRepeaterData(const unsigned char *data, unsigned int length, const in_addr& address, unsigned int port)
|
|
{
|
|
wxASSERT(data != NULL);
|
|
wxASSERT(length >= 26U);
|
|
|
|
m_user = wxString((char*)(data + 10U), wxConvLocal, LONG_CALLSIGN_LENGTH);
|
|
m_repeater = wxString((char*)(data + 18U), wxConvLocal, LONG_CALLSIGN_LENGTH);
|
|
|
|
m_address = address;
|
|
m_port = port;
|
|
|
|
return true;
|
|
}
|
|
|
|
wxString CHeardData::getRepeater() const
|
|
{
|
|
return m_repeater;
|
|
}
|
|
|
|
wxString CHeardData::getUser() const
|
|
{
|
|
return m_user;
|
|
}
|
|
|
|
void CHeardData::setDestination(const in_addr& address, unsigned int port)
|
|
{
|
|
m_address = address;
|
|
m_port = port;
|
|
}
|
|
|
|
in_addr CHeardData::getAddress() const
|
|
{
|
|
return m_address;
|
|
}
|
|
|
|
unsigned int CHeardData::getPort() const
|
|
{
|
|
return m_port;
|
|
}
|