From cf448cd496e5ebd806cad971948e605363ba7f59 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 30 Dec 2021 13:30:30 -0700 Subject: [PATCH] no complaints about already being a master --- README.md | 2 +- reflector/Reflector.cpp | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e43b9ad..9ac0114 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ It has nothing to do with the regular YSFReflector network, hence you don’t ne ## To-dos -I will eventually support a remote transcoder option, so that you can, for example, run urfd in a data center, and then run the transcoder somewhere you have physical access to it so you can plug in your AMBE vocoders. I don't recommend this as it will add unnessary, and variable, latency to your reflector. +I will eventually support a remote transcoder option, so that you can, for example, run urfd in a data center, and then run the transcoder somewhere you have physical access to it so you can plug in your AMBE vocoders. I don't recommend this as it will add unnessary and variable latency to your reflector. ## Copyright diff --git a/reflector/Reflector.cpp b/reflector/Reflector.cpp index c15ad03..bdc2486 100644 --- a/reflector/Reflector.cpp +++ b/reflector/Reflector.cpp @@ -163,14 +163,8 @@ std::shared_ptr CReflector::OpenStream(std::unique_ptrIsAMaster() ) { - std::cerr << "Client " << client->GetCallsign() << " is not a client!" << std::endl; - return nullptr; - } - if ( client->IsAMaster() ) - { - std::cerr << "Client " << client->GetCallsign() << " is already a master!" << std::endl; return nullptr; }