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.
143 lines
3.3 KiB
143 lines
3.3 KiB
/*
|
|
* Copyright (C) 2009-2014,2016,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.
|
|
*/
|
|
|
|
#include "YSFDefines.h"
|
|
#include "Network.h"
|
|
#include "Utils.h"
|
|
|
|
#include <cstdio>
|
|
#include <cassert>
|
|
#include <cstring>
|
|
|
|
CNetwork::CNetwork(unsigned int port, unsigned int id, const std::string& name, const std::string& description, bool debug) :
|
|
m_socket(port),
|
|
m_id(id),
|
|
m_name(name),
|
|
m_description(description),
|
|
m_callsign(),
|
|
m_debug(debug),
|
|
m_status(NULL)
|
|
{
|
|
m_name.resize(16U, ' ');
|
|
m_description.resize(14U, ' ');
|
|
|
|
m_status = new unsigned char[50U];
|
|
}
|
|
|
|
CNetwork::~CNetwork()
|
|
{
|
|
delete[] m_status;
|
|
}
|
|
|
|
bool CNetwork::open(const char* bindaddr)
|
|
{
|
|
if (strlen(bindaddr) > 0)
|
|
::fprintf(stdout, "Opening YSF network connection on address %s\n", bindaddr);
|
|
else
|
|
::fprintf(stdout, "Opening YSF network connection on all interfaces\n");
|
|
|
|
return m_socket.open(bindaddr);
|
|
}
|
|
|
|
bool CNetwork::writeData(const unsigned char* data, const in_addr& address, unsigned int port)
|
|
{
|
|
assert(data != NULL);
|
|
|
|
if (m_debug)
|
|
CUtils::dump(1U, "YSF Network Data Sent", data, 155U);
|
|
|
|
return m_socket.write(data, 155U, address, port);
|
|
}
|
|
|
|
bool CNetwork::writePoll(const in_addr& address, unsigned int port)
|
|
{
|
|
unsigned char buffer[20U];
|
|
|
|
buffer[0] = 'Y';
|
|
buffer[1] = 'S';
|
|
buffer[2] = 'F';
|
|
buffer[3] = 'P';
|
|
|
|
buffer[4U] = 'R';
|
|
buffer[5U] = 'E';
|
|
buffer[6U] = 'F';
|
|
buffer[7U] = 'L';
|
|
buffer[8U] = 'E';
|
|
buffer[9U] = 'C';
|
|
buffer[10U] = 'T';
|
|
buffer[11U] = 'O';
|
|
buffer[12U] = 'R';
|
|
buffer[13U] = ' ';
|
|
|
|
if (m_debug)
|
|
CUtils::dump(1U, "YSF Network Poll Sent", buffer, 14U);
|
|
|
|
return m_socket.write(buffer, 14U, address, port);
|
|
}
|
|
|
|
unsigned int CNetwork::readData(unsigned char* data, unsigned int length, in_addr& address, unsigned int& port)
|
|
{
|
|
assert(data != NULL);
|
|
assert(length > 0U);
|
|
|
|
int len = m_socket.read(data, length, address, port);
|
|
if (len <= 0)
|
|
return 0U;
|
|
|
|
// Handle incoming status requests
|
|
if (::memcmp(data, "YSFS", 4U) == 0) {
|
|
m_socket.write(m_status, 42U, address, port);
|
|
return 0U;
|
|
}
|
|
|
|
if (m_debug)
|
|
CUtils::dump(1U, "YSF Network Data Received", data, len);
|
|
|
|
return len;
|
|
}
|
|
|
|
void CNetwork::setCount(unsigned int count)
|
|
{
|
|
if (count > 999U)
|
|
count = 999U;
|
|
|
|
unsigned int hash = m_id;
|
|
|
|
if (hash == 0U) {
|
|
for (unsigned int i = 0U; i < m_name.size(); i++) {
|
|
hash += m_name.at(i);
|
|
hash += (hash << 10);
|
|
hash ^= (hash >> 6);
|
|
}
|
|
|
|
// Final avalanche
|
|
hash += (hash << 3);
|
|
hash ^= (hash >> 11);
|
|
hash += (hash << 15);
|
|
}
|
|
|
|
::sprintf((char*)m_status, "YSFS%05u%16.16s%14.14s%03u", hash % 100000U, m_name.c_str(), m_description.c_str(), count);
|
|
}
|
|
|
|
void CNetwork::close()
|
|
{
|
|
m_socket.close();
|
|
|
|
::fprintf(stdout, "Closing YSF network connection\n");
|
|
}
|