summaryrefslogtreecommitdiff
path: root/ControlServer.cpp
blob: 439dc7a8766d3cd3d909f105a976e27fd4dacc57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ControlServer.h"

namespace plexclient
{

void ControlServer::Start() {
	// start the HTTPServer
	m_pSrv->start();
}

void ControlServer::Stop() {
	// Stop the HTTPServer
	m_pSrv->stop();
}


}