├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SimpleTCP.Tests ├── CommTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerTests.cs ├── ServerTests2.cs └── SimpleTCP.Tests.csproj ├── SimpleTCP.sln └── SimpleTCP ├── Message.cs ├── Properties └── AssemblyInfo.cs ├── Server ├── ConnectedClient.cs ├── ServerListener.cs └── TcpListenerEx.cs ├── SimpleTCP.csproj ├── SimpleTCP.nuspec ├── SimpleTcpClient.cs └── SimpleTcpServer.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/README.md -------------------------------------------------------------------------------- /SimpleTCP.Tests/CommTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.Tests/CommTest.cs -------------------------------------------------------------------------------- /SimpleTCP.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleTCP.Tests/ServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.Tests/ServerTests.cs -------------------------------------------------------------------------------- /SimpleTCP.Tests/ServerTests2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.Tests/ServerTests2.cs -------------------------------------------------------------------------------- /SimpleTCP.Tests/SimpleTCP.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.Tests/SimpleTCP.Tests.csproj -------------------------------------------------------------------------------- /SimpleTCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP.sln -------------------------------------------------------------------------------- /SimpleTCP/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/Message.cs -------------------------------------------------------------------------------- /SimpleTCP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleTCP/Server/ConnectedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/Server/ConnectedClient.cs -------------------------------------------------------------------------------- /SimpleTCP/Server/ServerListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/Server/ServerListener.cs -------------------------------------------------------------------------------- /SimpleTCP/Server/TcpListenerEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/Server/TcpListenerEx.cs -------------------------------------------------------------------------------- /SimpleTCP/SimpleTCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/SimpleTCP.csproj -------------------------------------------------------------------------------- /SimpleTCP/SimpleTCP.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/SimpleTCP.nuspec -------------------------------------------------------------------------------- /SimpleTCP/SimpleTcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/SimpleTcpClient.cs -------------------------------------------------------------------------------- /SimpleTCP/SimpleTcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandonPotter/SimpleTCP/HEAD/SimpleTCP/SimpleTcpServer.cs --------------------------------------------------------------------------------