fixed restart of webui

This commit is contained in:
csoler 2019-11-23 18:40:31 +01:00
parent b8b7d103e1
commit d1a9f839a4
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
5 changed files with 16 additions and 12 deletions

View file

@ -141,10 +141,6 @@ public:
*/
void setNewAccessRequestCallback(const std::function<bool(const std::string&,std::string&)>& callback );
protected:
/// @see RsSingleJobThread
virtual void run();
private:
/// @see p3Config::setupSerialiser

View file

@ -31,6 +31,14 @@ RestbedService::RestbedService()
mBindingAddress = "127.0.0.1";
}
bool RestbedService::restart()
{
stop();
start("Restbed Service");
return true;
}
bool RestbedService::stop()
{
mService->stop();

View file

@ -31,11 +31,10 @@ class RestbedService: public RsThread
{
public:
RestbedService() ;
virtual ~RestbedService();
virtual ~RestbedService() = default;
bool restart();
bool stop();
bool isRunning() const;
void setListeningPort(uint16_t port) ;
void setBindAddress(const std::string& bind_address);