From d4f7d11bdd6209dfe89893fab200dd13cbf8c739 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 9 Mar 2021 21:00:35 +0000 Subject: [PATCH] Cleanup the master networking code a little. --- DMRNetwork.cpp | 6 +----- Version.h | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/DMRNetwork.cpp b/DMRNetwork.cpp index f503441..201a4a2 100644 --- a/DMRNetwork.cpp +++ b/DMRNetwork.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015,2016,2017,2018,2020 by Jonathan Naylor G4KLX + * Copyright (C) 2015,2016,2017,2018,2020,2021 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 @@ -18,7 +18,6 @@ #include "DMRNetwork.h" -#include "StopWatch.h" #include "SHA256.h" #include "Utils.h" #include "Log.h" @@ -67,9 +66,6 @@ m_beacon(false) m_id[1U] = id >> 16; m_id[2U] = id >> 8; m_id[3U] = id >> 0; - - CStopWatch stopWatch; - ::srand(stopWatch.start()); } CDMRNetwork::~CDMRNetwork() diff --git a/Version.h b/Version.h index e45e116..f6215ae 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20210203"; +const char* VERSION = "20210309"; #endif