예제 #1
0
파일: Proxy.cs 프로젝트: HTD/Woof.Sockets
 /// <summary>
 /// Stars the proxy.
 /// </summary>
 public void Start()
 {
     ProxyServer.Listen();
     IsActive = true;
 }
예제 #2
0
파일: Router.cs 프로젝트: HTD/Woof.Sockets
 /// <summary>
 /// Starts the routing server.
 /// </summary>
 public void Start()
 {
     RoutingServer.Listen();
     IsActive = true;
 }