sockscape/server/Libraries/Kneesocks/Server.cs

56 lines
1.4 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-12 21:05:18 +00:00
public class Server<T> where T : Connection, new() {
2017-05-04 12:21:27 +00:00
private TcpListener Socket;
private Thread Listener = null;
private Pool<T> ConnectionPool = null;
2017-05-12 21:05:18 +00:00
public bool Started { get; private set; } = false;
2017-05-04 12:21:27 +00:00
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) {
2017-05-12 21:05:18 +00:00
if(Socket.Pending()) {
var templatedConnection = new T();
templatedConnection.Initialize(Socket.AcceptTcpClient());
ConnectionPool.AddConnection(templatedConnection);
}
2017-05-04 12:21:27 +00:00
Thread.Sleep(100);
}
Socket.Stop();
}
2017-04-25 21:01:41 +00:00
}
}
2017-05-04 12:21:27 +00:00