sockscape/server/Kneesocks/Server.cs

53 lines
1.3 KiB
C#
Raw Normal View History

2017-04-25 21:01:41 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2017-05-04 12:21:27 +00:00
using System.Threading;
using System.Net.Sockets;
using System.Net;
2017-04-25 21:01:41 +00:00
namespace Kneesocks {
2017-05-04 12:21:27 +00:00
public class Server<T> where T : Connection {
private TcpListener Socket;
private Thread Listener = null;
private Pool<T> ConnectionPool = null;
private bool Started = false;
public UInt16 Port { get; private set; }
public Server(UInt16 port, Pool<T> pool) {
Port = port;
Socket = new TcpListener(IPAddress.Any, port);
Listener = new Thread(new ThreadStart(ListenThread));
ConnectionPool = pool;
}
public void Start() {
if(!Started) {
Listener.Start();
Started = true;
}
}
public void Stop() {
if(Started) {
Started = false;
Listener.Join();
}
}
private void ListenThread() {
Socket.Start();
while(Started) {
if(Socket.Pending())
ConnectionPool.AddConnection(new Connection(Socket.AcceptTcpClient()));
Thread.Sleep(100);
}
Socket.Stop();
}
2017-04-25 21:01:41 +00:00
}
}
2017-05-04 12:21:27 +00:00