correct spelling errors

pull/2/head
Tom Early 3 years ago
parent d11128df3a
commit dc12fd748e

@ -42,7 +42,7 @@ public:
bool ReloadFromFile(void); bool ReloadFromFile(void);
bool NeedReload(void); bool NeedReload(void);
// pass-thru // pass-through
bool empty() const { return m_Callsigns.empty(); } bool empty() const { return m_Callsigns.empty(); }
// compare // compare

@ -63,7 +63,7 @@ struct CCallsignEqual
class CCallsign class CCallsign
{ {
public: public:
// contructors // constructors
CCallsign(); CCallsign();
CCallsign(const UCallsign &cs); // no id lookup CCallsign(const UCallsign &cs); // no id lookup
CCallsign(const CCallsign &cs); CCallsign(const CCallsign &cs);

@ -73,7 +73,7 @@ void CClients::RemoveClient(std::shared_ptr<CClient> client)
bool found = false; bool found = false;
for ( auto it=begin(); it!=end(); it++ ) for ( auto it=begin(); it!=end(); it++ )
{ {
// compare objetc pointers // compare object pointers
if ( *it == client ) if ( *it == client )
{ {
// found it ! // found it !

@ -47,7 +47,7 @@ public:
void RemoveClient(std::shared_ptr<CClient>); void RemoveClient(std::shared_ptr<CClient>);
bool IsClient(std::shared_ptr<CClient>) const; bool IsClient(std::shared_ptr<CClient>) const;
// pass-thru // pass-through
std::list<std::shared_ptr<CClient>>::iterator begin() { return m_Clients.begin(); } 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>>::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 cbegin() const { return m_Clients.cbegin(); }

@ -50,7 +50,7 @@ public:
void Thread(void); void Thread(void);
void Task(void); void Task(void);
// pass-thru // pass-through
void Push(std::unique_ptr<CPacket> p) { m_Queue.Push(std::move(p)); } void Push(std::unique_ptr<CPacket> p) { m_Queue.Push(std::move(p)); }
protected: protected:

@ -493,7 +493,7 @@ bool CConfigure::ReadData(const std::string &path)
badParam(key); badParam(key);
break; break;
default: default:
std::cout << "WARNING: parameter '" << line << "' defined befor any [section]" << std::endl; std::cout << "WARNING: parameter '" << line << "' defined before any [section]" << std::endl;
} }
} }
@ -536,7 +536,7 @@ bool CConfigure::ReadData(const std::string &path)
} }
else else
{ {
std::cerr << "ERROR: specifed IPv4 external address, " << v4 << ", is malformed" << std::endl; std::cerr << "ERROR: specified IPv4 external address, " << v4 << ", is malformed" << std::endl;
rval = true; rval = true;
} }
} }
@ -574,7 +574,7 @@ bool CConfigure::ReadData(const std::string &path)
} }
else else
{ {
std::cerr << "ERROR: the specifed IPv6 address [" << v6 << "] is malformed" << std::endl; std::cerr << "ERROR: the specified IPv6 address [" << v6 << "] is malformed" << std::endl;
rval = true; rval = true;
} }
} }

@ -449,7 +449,7 @@ bool CDmrplusProtocol::IsValidDvFramePacket(const CIp &Ip, const CBuffer &Buffer
uint8_t dmrsync[7]; uint8_t dmrsync[7];
// get the 33 bytes ambe // get the 33 bytes ambe
memcpy(dmrframe, &(Buffer.data()[26]), 33); memcpy(dmrframe, &(Buffer.data()[26]), 33);
// handle endianess // handle endianness
SwapEndianess(dmrframe, sizeof(dmrframe)); SwapEndianess(dmrframe, sizeof(dmrframe));
// extract the 3 ambe frames // extract the 3 ambe frames
memcpy(dmr3ambe, dmrframe, 14); memcpy(dmr3ambe, dmrframe, 14);

@ -390,7 +390,7 @@ void CG3Protocol::Task(void)
{ {
BaseIp = &ClIp; BaseIp = &ClIp;
client->Alive(); client->Alive();
// supress host checks - no ping needed to trigger potential ICMPs // suppress host checks - no ping needed to trigger potential ICMPs
// the regular data flow will do it // the regular data flow will do it
m_LastKeepaliveTime.start(); m_LastKeepaliveTime.start();
break; break;
@ -444,7 +444,7 @@ void CG3Protocol::HandleQueue(void)
{ {
while (! m_Queue.IsEmpty()) while (! m_Queue.IsEmpty())
{ {
// supress host checks // suppress host checks
m_LastKeepaliveTime.start(); m_LastKeepaliveTime.start();
// get the packet // get the packet

@ -219,7 +219,7 @@ unsigned int CGolay2087::getSyndrome1987(unsigned int pattern)
* Compute the syndrome corresponding to the given pattern, i.e., the * Compute the syndrome corresponding to the given pattern, i.e., the
* remainder after dividing the pattern (when considering it as the vector * remainder after dividing the pattern (when considering it as the vector
* representation of a polynomial) by the generator polynomial, GENPOL. * representation of a polynomial) by the generator polynomial, GENPOL.
* In the program this pattern has several meanings: (1) pattern = infomation * In the program this pattern has several meanings: (1) pattern = information
* bits, when constructing the encoding table; (2) pattern = error pattern, * bits, when constructing the encoding table; (2) pattern = error pattern,
* when constructing the decoding table; and (3) pattern = received vector, to * when constructing the decoding table; and (3) pattern = received vector, to
* obtain its syndrome in decoding. * obtain its syndrome in decoding.

@ -1055,7 +1055,7 @@ static unsigned int get_syndrome_23127(unsigned int pattern)
* Compute the syndrome corresponding to the given pattern, i.e., the * Compute the syndrome corresponding to the given pattern, i.e., the
* remainder after dividing the pattern (when considering it as the vector * remainder after dividing the pattern (when considering it as the vector
* representation of a polynomial) by the generator polynomial, GENPOL. * representation of a polynomial) by the generator polynomial, GENPOL.
* In the program this pattern has several meanings: (1) pattern = infomation * In the program this pattern has several meanings: (1) pattern = information
* bits, when constructing the encoding table; (2) pattern = error pattern, * bits, when constructing the encoding table; (2) pattern = error pattern,
* when constructing the decoding table; and (3) pattern = received vector, to * when constructing the decoding table; and (3) pattern = received vector, to
* obtain its syndrome in decoding. * obtain its syndrome in decoding.

@ -224,7 +224,7 @@ bool CHamming::decode1393(bool* d)
d[12] = !d[12]; d[12] = !d[12];
return true; return true;
// Data bit erros // Data bit errors
case 0x0FU: case 0x0FU:
d[0] = !d[0]; d[0] = !d[0];
return true; return true;
@ -303,7 +303,7 @@ bool CHamming::decode1063(bool* d)
d[9] = !d[9]; d[9] = !d[9];
return true; return true;
// Data bit erros // Data bit errors
case 0x07U: case 0x07U:
d[0] = !d[0]; d[0] = !d[0];
return true; return true;

@ -56,7 +56,7 @@ public:
bool IsCallsignListed(const std::string &, const char) const; bool IsCallsignListed(const std::string &, const char) const;
bool IsCallsignListed(const std::string &, const CIp &ip, const char*) const; bool IsCallsignListed(const std::string &, const CIp &ip, const char*) const;
// pass-thru // pass-through
bool empty() const { return m_InterlinkMap.empty(); } bool empty() const { return m_InterlinkMap.empty(); }
std::map<std::string, CInterlinkMapItem>::iterator begin() { return m_InterlinkMap.begin(); } std::map<std::string, CInterlinkMapItem>::iterator begin() { return m_InterlinkMap.begin(); }
std::map<std::string, CInterlinkMapItem>::iterator end() { return m_InterlinkMap.end(); } std::map<std::string, CInterlinkMapItem>::iterator end() { return m_InterlinkMap.end(); }

@ -29,7 +29,7 @@
* Description * Description
* ----------- * -----------
* The source file contains routines which calculate the CCITT CRC * The source file contains routines which calculate the CCITT CRC
* values for an incomming byte string. * values for an incoming byte string.
*/ */
#include <stdlib.h> #include <stdlib.h>

@ -29,7 +29,7 @@
* Description * Description
* ----------- * -----------
* The source file contains routines which calculate the CCITT CRC * The source file contains routines which calculate the CCITT CRC
* values for an incomming byte string. * values for an incoming byte string.
*/ */
#pragma once #pragma once

@ -39,7 +39,7 @@ int main(int argc, char *argv[])
{ {
if (argc != 2) if (argc != 2)
{ {
std::cerr << "No configuration file specifed! Usage: " << argv[0] << " /pathname/to/configuration/file" << std::endl; std::cerr << "No configuration file specified! Usage: " << argv[0] << " /pathname/to/configuration/file" << std::endl;
return EXIT_FAILURE; return EXIT_FAILURE;
} }
@ -98,13 +98,13 @@ static void usage(std::ostream &os, const char *name)
" ysf : The Callsign => Tx/Rx frequency database.\n" " ysf : The Callsign => Tx/Rx frequency database.\n"
"SOURCE (choose one)\n" "SOURCE (choose one)\n"
" file : The file specified by the FilePath ini parameter.\n" " file : The file specified by the FilePath ini parameter.\n"
" http : The URL specified by the URL ini paramater.\n" " http : The URL specified by the URL ini parameter.\n"
"ACTION (choose one)\n" "ACTION (choose one)\n"
" print : Print all lines from the SOURCE that are syntactically correct.\n" " print : Print all lines from the SOURCE that are syntactically correct.\n"
" error : Print only the lines with failed syntax.\n" " error : Print only the lines with failed syntax.\n"
"INIFILE : an error-free urfd ini file (check it first with inicheck).\n\n" "INIFILE : an error-free urfd ini file (check it first with inicheck).\n\n"
"Only the first character of DATABASE, SOURCE and ACTION is read.\n" "Only the first character of DATABASE, SOURCE and ACTION is read.\n"
"Example: " << name << " y f e urfd.ini # Check your YSF Tx/Rx database file specifed in urfd.ini for syntax errors.\n\n"; "Example: " << name << " y f e urfd.ini # Check your YSF Tx/Rx database file specified in urfd.ini for syntax errors.\n\n";
} }
enum class Edb { none, dmr, nxdn, ysf }; enum class Edb { none, dmr, nxdn, ysf };

@ -88,7 +88,7 @@ void CPacket::EncodeInterlinkPacket(const char *magic, CBuffer &buf) const
data[19] = m_uiYsfPacketFrameId; data[19] = m_uiYsfPacketFrameId;
} }
// dstar contstructor // dstar constructor
CPacket::CPacket(uint16_t sid, uint8_t dstarpid) CPacket::CPacket(uint16_t sid, uint8_t dstarpid)
{ {
m_uiStreamId = sid; m_uiStreamId = sid;

@ -61,7 +61,7 @@ public:
int GetNbClients(void) const { return (int)m_Clients.size(); } int GetNbClients(void) const { return (int)m_Clients.size(); }
void ClearClients(void) { m_Clients.clear(); } void ClearClients(void) { m_Clients.clear(); }
// pass-thru // pass-through
std::list<std::shared_ptr<CClient>>::iterator begin() { return m_Clients.begin(); } 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>>::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 cbegin() const { return m_Clients.cbegin(); }

@ -38,7 +38,7 @@ public:
void AddPeer(std::shared_ptr<CPeer>); void AddPeer(std::shared_ptr<CPeer>);
void RemovePeer(std::shared_ptr<CPeer>); void RemovePeer(std::shared_ptr<CPeer>);
// pass-thru // pass-through
std::list<std::shared_ptr<CPeer>>::iterator begin() { return m_Peers.begin(); } std::list<std::shared_ptr<CPeer>>::iterator begin() { return m_Peers.begin(); }
std::list<std::shared_ptr<CPeer>>::iterator end() { return m_Peers.end(); } std::list<std::shared_ptr<CPeer>>::iterator end() { return m_Peers.end(); }
std::list<std::shared_ptr<CPeer>>::const_iterator cbegin() const { return m_Peers.cbegin(); } std::list<std::shared_ptr<CPeer>>::const_iterator cbegin() const { return m_Peers.cbegin(); }

@ -32,7 +32,7 @@ public:
void Lock(void) { m_Mutex.lock(); } void Lock(void) { m_Mutex.lock(); }
void Unlock(void) { m_Mutex.unlock(); } void Unlock(void) { m_Mutex.unlock(); }
// pass-thru // pass-through
std::list<std::unique_ptr<CProtocol>>::iterator begin() { return m_Protocols.begin(); } std::list<std::unique_ptr<CProtocol>>::iterator begin() { return m_Protocols.begin(); }
std::list<std::unique_ptr<CProtocol>>::iterator end() { return m_Protocols.end(); } std::list<std::unique_ptr<CProtocol>>::iterator end() { return m_Protocols.end(); }

@ -72,7 +72,7 @@ unsigned int CQR1676::getSyndrome1576(unsigned int pattern)
* Compute the syndrome corresponding to the given pattern, i.e., the * Compute the syndrome corresponding to the given pattern, i.e., the
* remainder after dividing the pattern (when considering it as the vector * remainder after dividing the pattern (when considering it as the vector
* representation of a polynomial) by the generator polynomial, GENPOL. * representation of a polynomial) by the generator polynomial, GENPOL.
* In the program this pattern has several meanings: (1) pattern = infomation * In the program this pattern has several meanings: (1) pattern = information
* bits, when constructing the encoding table; (2) pattern = error pattern, * bits, when constructing the encoding table; (2) pattern = error pattern,
* when constructing the decoding table; and (3) pattern = received vector, to * when constructing the decoding table; and (3) pattern = received vector, to
* obtain its syndrome in decoding. * obtain its syndrome in decoding.

@ -182,7 +182,7 @@ bool CReflector::IsStreaming(char module)
return false; return false;
} }
// clients MUST have bee locked by the caller so we can freely access it within the fuction // clients MUST have bee locked by the caller so we can freely access it within the function
std::shared_ptr<CPacketStream> CReflector::OpenStream(std::unique_ptr<CDvHeaderPacket> &DvHeader, std::shared_ptr<CClient>client) std::shared_ptr<CPacketStream> CReflector::OpenStream(std::unique_ptr<CDvHeaderPacket> &DvHeader, std::shared_ptr<CClient>client)
{ {
// check sid is not zero // check sid is not zero
@ -655,7 +655,7 @@ void CReflector::PutDHTConfig()
void CReflector::GetDHTConfig(const std::string &cs) void CReflector::GetDHTConfig(const std::string &cs)
{ {
static SUrfdConfig0 cfg; static SUrfdConfig0 cfg;
cfg.timestamp = 0; // everytime this is called, zero the timestamp cfg.timestamp = 0; // every time this is called, zero the timestamp
auto item = g_GateKeeper.GetInterlinkMap()->FindMapItem(cs); auto item = g_GateKeeper.GetInterlinkMap()->FindMapItem(cs);
g_GateKeeper.ReleaseInterlinkMap(); g_GateKeeper.ReleaseInterlinkMap();
if (nullptr == item) if (nullptr == item)

@ -22,7 +22,7 @@
/************************************************************ /************************************************************
* THIS IS IMPORTANT * THIS IS IMPORTANT
* This template is primarly designed for std::unique_ptr! * This template is primarily designed for std::unique_ptr!
* If you are going to use it for std::shared_ptr, then * If you are going to use it for std::shared_ptr, then
* please consider that when you Push(), what you pushed * please consider that when you Push(), what you pushed
* from will be nullptr after the Push()! * from will be nullptr after the Push()!
@ -56,13 +56,13 @@ public:
} }
} }
// If the queue is empty, wait until an element is avaiable. // If the queue is empty, wait until an element is available.
T PopWait(void) T PopWait(void)
{ {
std::unique_lock<std::mutex> lock(m); std::unique_lock<std::mutex> lock(m);
while(q.empty()) while(q.empty())
{ {
// release lock as long as the wait and reaquire it afterwards. // release lock as long as the wait and reacquire it afterwards.
c.wait(lock); c.wait(lock);
} }
T val = std::move(q.front()); T val = std::move(q.front());

@ -40,7 +40,7 @@ CUdpSocket::~CUdpSocket()
// returns true on error // returns true on error
bool CUdpSocket::Open(const CIp &Ip) bool CUdpSocket::Open(const CIp &Ip)
{ {
// check for a vaild family // check for a valid family
if (AF_UNSPEC == Ip.GetFamily()) if (AF_UNSPEC == Ip.GetFamily())
return true; return true;

@ -40,7 +40,7 @@ public:
int GetSize(void) const { return (int)m_Users.size(); } int GetSize(void) const { return (int)m_Users.size(); }
void AddUser(const CUser &); void AddUser(const CUser &);
// pass-thru // pass-through
std::list<CUser>::iterator begin() { return m_Users.begin(); } std::list<CUser>::iterator begin() { return m_Users.begin(); }
std::list<CUser>::iterator end() { return m_Users.end(); } std::list<CUser>::iterator end() { return m_Users.end(); }
std::list<CUser>::const_iterator cbegin() { return m_Users.cbegin(); } std::list<CUser>::const_iterator cbegin() { return m_Users.cbegin(); }

@ -38,7 +38,7 @@ public:
// set // set
void Set(uint8_t, uint8_t, uint8_t); void Set(uint8_t, uint8_t, uint8_t);
// comparaison operators // comparison operators
bool operator ==(const CVersion &v) const; bool operator ==(const CVersion &v) const;
bool operator !=(const CVersion &v) const; bool operator !=(const CVersion &v) const;
bool operator >=(const CVersion &v) const; bool operator >=(const CVersion &v) const;

Loading…
Cancel
Save

Powered by TurnKey Linux.