Download OpenServers.net

Description

A collection of open source servers built on top of a shared server architechture. Currently FTP is the only support server.

Source Files

The download file openservernet.zip has the following entries.


trunk/LICENSE.txt/* w ww  . j  a v  a 2s  . c  o m*/
trunk/OpenServers.net.Common/AbstractServer.cs
trunk/OpenServers.net.Common/Common.csproj
trunk/OpenServers.net.Common/Common.csproj.user
trunk/OpenServers.net.Common/FileSystem/AbstractFileSystem.cs
trunk/OpenServers.net.Common/FileSystem/Disk/DiskDirectory.cs
trunk/OpenServers.net.Common/FileSystem/Disk/DiskFile.cs
trunk/OpenServers.net.Common/FileSystem/Disk/DiskFileSystem.cs
trunk/OpenServers.net.Common/FileSystem/Disk/DiskFileSystemObject.cs
trunk/OpenServers.net.Common/FileSystem/FileSystemUtils.cs
trunk/OpenServers.net.Common/FileSystem/Http/HttpDirectory.cs
trunk/OpenServers.net.Common/FileSystem/Http/HttpFile.cs
trunk/OpenServers.net.Common/FileSystem/IDirectory.cs
trunk/OpenServers.net.Common/FileSystem/IFile.cs
trunk/OpenServers.net.Common/FileSystem/IFileSystem.cs
trunk/OpenServers.net.Common/FileSystem/IFileSystemObject.cs
trunk/OpenServers.net.Common/FileSystem/Virtual/NewVirtualFile.cs
trunk/OpenServers.net.Common/FileSystem/Virtual/VirtualDirectory.cs
trunk/OpenServers.net.Common/FileSystem/Virtual/VirtualFile.cs
trunk/OpenServers.net.Common/FileSystem/Virtual/VirtualFileSystem.cs
trunk/OpenServers.net.Common/FileSystem/Virtual/VirtualFileSystemObject.cs
trunk/OpenServers.net.Common/IServer.cs
trunk/OpenServers.net.Common/Listener/IListener.cs
trunk/OpenServers.net.Common/Listener/NonsecureTcpListener.cs
trunk/OpenServers.net.Common/OpenServers.net.Common.snk
trunk/OpenServers.net.Common/Properties/AssemblyInfo.cs
trunk/OpenServers.net.Common/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.Common/Security/AbstractSecurityProvider.cs
trunk/OpenServers.net.Common/Security/ISecurityProvider.cs
trunk/OpenServers.net.Common/Security/NtAuthSecurityProvider.cs
trunk/OpenServers.net.Common/Security/OpenSecurityProvider.cs
trunk/OpenServers.net.Common/Socket/ISocket.cs
trunk/OpenServers.net.Common/Socket/TcpSocket.cs
trunk/OpenServers.net.Common/State/AbstractState.cs
trunk/OpenServers.net.Common/State/IState.cs
trunk/OpenServers.net.Common/System/DefaultSystem.cs
trunk/OpenServers.net.Common/System/ISystem.cs
trunk/OpenServers.net.Common/User/AnonymousUser.cs
trunk/OpenServers.net.Common/User/IUser.cs
trunk/OpenServers.net.Common/Utils/ArrayUtils.cs
trunk/OpenServers.net.Common/Utils/CompositeStream.cs
trunk/OpenServers.net.Common/Utils/DateUtils.cs
trunk/OpenServers.net.Common/Utils/PrivateObject.cs
trunk/OpenServers.net.Common/Utils/PrivateStaticObject.cs
trunk/OpenServers.net.Common/Utils/ReflectionUtils.cs
trunk/OpenServers.net.Common/Utils/StreamUtils.cs
trunk/OpenServers.net.Common/Utils/StringUtils.cs
trunk/OpenServers.net.Common/Utils/Url.cs
trunk/OpenServers.net.CommonTest/BaseNMockTest.cs
trunk/OpenServers.net.CommonTest/CommonTest.csproj
trunk/OpenServers.net.CommonTest/CommonTest.csproj.user
trunk/OpenServers.net.CommonTest/Examples.cs
trunk/OpenServers.net.CommonTest/FileSystem/AbstractFileSystemTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Disk/DiskDirectoryTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Disk/DiskFileSystemTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Disk/DiskFileTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Http/HttpDirectoryTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Http/HttpFileTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Virtual/NewVirtualFileTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Virtual/VirtualDirectoryTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Virtual/VirtualFileSystemObjectTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Virtual/VirtualFileSystemTest.cs
trunk/OpenServers.net.CommonTest/FileSystem/Virtual/VirtualFileTest.cs
trunk/OpenServers.net.CommonTest/Properties/AssemblyInfo.cs
trunk/OpenServers.net.CommonTest/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.CommonTest/Security/AbstractSecurityProviderTest.cs
trunk/OpenServers.net.CommonTest/Security/NtAuthSecurityProviderTest.cs
trunk/OpenServers.net.CommonTest/Security/OpenSecurityProviderTest.cs
trunk/OpenServers.net.CommonTest/System/DefaultSystemTest.cs
trunk/OpenServers.net.CommonTest/System/MockSystem.cs
trunk/OpenServers.net.CommonTest/Utils/ArrayUtilsTest.cs
trunk/OpenServers.net.CommonTest/Utils/CompositeStreamTest.cs
trunk/OpenServers.net.CommonTest/Utils/DateUtilsTest.cs
trunk/OpenServers.net.CommonTest/Utils/PrivateObjectTest.cs
trunk/OpenServers.net.CommonTest/Utils/PrivateStaticObjectTest.cs
trunk/OpenServers.net.CommonTest/Utils/ReflectionUtilsTest.cs
trunk/OpenServers.net.CommonTest/Utils/StreamUtilsTest.cs
trunk/OpenServers.net.CommonTest/Utils/StringUtilsTest.cs
trunk/OpenServers.net.CommonTest/Utils/UrlTest.cs
trunk/OpenServers.net.FtpServer/Command/BaseCommand.cs
trunk/OpenServers.net.FtpServer/Command/BaseReceiveDataCommand.cs
trunk/OpenServers.net.FtpServer/Command/BaseSendDataCommand.cs
trunk/OpenServers.net.FtpServer/Command/ChangeWorkingDirectoryCommand.cs
trunk/OpenServers.net.FtpServer/Command/DeleteCommand.cs
trunk/OpenServers.net.FtpServer/Command/DeleteDirectoryCommand.cs
trunk/OpenServers.net.FtpServer/Command/FeatureCommand.cs
trunk/OpenServers.net.FtpServer/Command/IFeatureCommand.cs
trunk/OpenServers.net.FtpServer/Command/ListCommand.cs
trunk/OpenServers.net.FtpServer/Command/MakeDirectoryCommand.cs
trunk/OpenServers.net.FtpServer/Command/NameListCommand.cs
trunk/OpenServers.net.FtpServer/Command/NoOpCommand.cs
trunk/OpenServers.net.FtpServer/Command/PasswordCommand.cs
trunk/OpenServers.net.FtpServer/Command/PortCommand.cs
trunk/OpenServers.net.FtpServer/Command/PrintWorkingDirectoryCommand.cs
trunk/OpenServers.net.FtpServer/Command/QuitCommand.cs
trunk/OpenServers.net.FtpServer/Command/RenameFromCommand.cs
trunk/OpenServers.net.FtpServer/Command/RenameToCommand.cs
trunk/OpenServers.net.FtpServer/Command/RestartCommand.cs
trunk/OpenServers.net.FtpServer/Command/RetrieveCommand.cs
trunk/OpenServers.net.FtpServer/Command/StoreCommand.cs
trunk/OpenServers.net.FtpServer/Command/SystemCommand.cs
trunk/OpenServers.net.FtpServer/Command/TypeCommand.cs
trunk/OpenServers.net.FtpServer/Command/UserCommand.cs
trunk/OpenServers.net.FtpServer/FtpServer.cs
trunk/OpenServers.net.FtpServer/FtpServer.csproj
trunk/OpenServers.net.FtpServer/FtpServer.csproj.user
trunk/OpenServers.net.FtpServer/IFtpServer.cs
trunk/OpenServers.net.FtpServer/IMessages.cs
trunk/OpenServers.net.FtpServer/Messages.cs
trunk/OpenServers.net.FtpServer/OpenServers.net.FtpServer.snk
trunk/OpenServers.net.FtpServer/Properties/AssemblyInfo.cs
trunk/OpenServers.net.FtpServer/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.FtpServer/State/FtpState.cs
trunk/OpenServers.net.FtpServerTest/Command/AbstractCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/ChangeWorkingDirectoryCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/DeleteCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/DeleteDirectoryCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/ListCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/MakeDirectoryCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/NameListCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/NoOpCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/PasswordCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/PortCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/PrintWorkingDirectoryCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/QuitCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/RenameFromCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/RenameToCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/RestartCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/RetrieveCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/StoreCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/SystemCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/TypeCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Command/UserCommandTest.cs
trunk/OpenServers.net.FtpServerTest/Examples.cs
trunk/OpenServers.net.FtpServerTest/FtpServerTest.cs
trunk/OpenServers.net.FtpServerTest/FtpServerTest.csproj
trunk/OpenServers.net.FtpServerTest/FtpServerTest.csproj.user
trunk/OpenServers.net.FtpServerTest/IntegrationTest.cs
trunk/OpenServers.net.FtpServerTest/MessagesTest.cs
trunk/OpenServers.net.FtpServerTest/Properties/AssemblyInfo.cs
trunk/OpenServers.net.FtpServerTest/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.FtpServerTestCLI/App.config
trunk/OpenServers.net.FtpServerTestCLI/FtpServerTestCLI.csproj
trunk/OpenServers.net.FtpServerTestCLI/FtpServerTestCLI.csproj.user
trunk/OpenServers.net.FtpServerTestCLI/Program.cs
trunk/OpenServers.net.FtpServerTestCLI/Properties/AssemblyInfo.cs
trunk/OpenServers.net.FtpServerTestCLI/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.HttpServer/FileSystem/IHttpFile.cs
trunk/OpenServers.net.HttpServer/HttpProcessor.cs
trunk/OpenServers.net.HttpServer/HttpResponseCode.cs
trunk/OpenServers.net.HttpServer/HttpServer.cs
trunk/OpenServers.net.HttpServer/HttpServer.csproj
trunk/OpenServers.net.HttpServer/IHttpProcessor.cs
trunk/OpenServers.net.HttpServer/IHttpServer.cs
trunk/OpenServers.net.HttpServer/OpenServers.net.HttpServer.snk
trunk/OpenServers.net.HttpServer/Properties/AssemblyInfo.cs
trunk/OpenServers.net.HttpServer/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.HttpServer/Request/HttpRequest.cs
trunk/OpenServers.net.HttpServer/Response/HttpResponse.cs
trunk/OpenServers.net.HttpServer/State/HttpState.cs
trunk/OpenServers.net.HttpServerTest/Examples.cs
trunk/OpenServers.net.HttpServerTest/HttpProcessorTest.cs
trunk/OpenServers.net.HttpServerTest/HttpServerTest.cs
trunk/OpenServers.net.HttpServerTest/HttpServerTest.csproj
trunk/OpenServers.net.HttpServerTest/Properties/AssemblyInfo.cs
trunk/OpenServers.net.HttpServerTest/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.HttpServerTestCLI/App.config
trunk/OpenServers.net.HttpServerTestCLI/HttpServerTestCLI.csproj
trunk/OpenServers.net.HttpServerTestCLI/Program.cs
trunk/OpenServers.net.HttpServerTestCLI/Properties/AssemblyInfo.cs
trunk/OpenServers.net.HttpServerTestCLI/Properties/AssemblyInfo.cs.in
trunk/OpenServers.net.sln
trunk/change_log.txt
trunk/default.build
trunk/docs/rfcs/ftp/rfc1123.txt
trunk/docs/rfcs/ftp/rfc114.txt
trunk/docs/rfcs/ftp/rfc1415.txt
trunk/docs/rfcs/ftp/rfc1579.txt
trunk/docs/rfcs/ftp/rfc1635.txt
trunk/docs/rfcs/ftp/rfc1639.txt
trunk/docs/rfcs/ftp/rfc2228.txt
trunk/docs/rfcs/ftp/rfc2389.txt
trunk/docs/rfcs/ftp/rfc2428.txt
trunk/docs/rfcs/ftp/rfc2577.txt
trunk/docs/rfcs/ftp/rfc2585.txt
trunk/docs/rfcs/ftp/rfc2640.txt
trunk/docs/rfcs/ftp/rfc2773.txt
trunk/docs/rfcs/ftp/rfc281.txt
trunk/docs/rfcs/ftp/rfc3027.txt
trunk/docs/rfcs/ftp/rfc354.txt
trunk/docs/rfcs/ftp/rfc385.txt
trunk/docs/rfcs/ftp/rfc412.txt
trunk/docs/rfcs/ftp/rfc414.txt
trunk/docs/rfcs/ftp/rfc430.txt
trunk/docs/rfcs/ftp/rfc438.txt
trunk/docs/rfcs/ftp/rfc454.txt
trunk/docs/rfcs/ftp/rfc458.txt
trunk/docs/rfcs/ftp/rfc463.txt
trunk/docs/rfcs/ftp/rfc468.txt
trunk/docs/rfcs/ftp/rfc478.txt
trunk/docs/rfcs/ftp/rfc479.txt
trunk/docs/rfcs/ftp/rfc480.txt
trunk/docs/rfcs/ftp/rfc506.txt
trunk/docs/rfcs/ftp/rfc529.txt
trunk/docs/rfcs/ftp/rfc542.txt
trunk/docs/rfcs/ftp/rfc593.txt
trunk/docs/rfcs/ftp/rfc614.txt
trunk/docs/rfcs/ftp/rfc624.txt
trunk/docs/rfcs/ftp/rfc630.txt
trunk/docs/rfcs/ftp/rfc640.txt
trunk/docs/rfcs/ftp/rfc697.txt
trunk/docs/rfcs/ftp/rfc737.txt
trunk/docs/rfcs/ftp/rfc743.txt
trunk/docs/rfcs/ftp/rfc775.txt
trunk/docs/rfcs/ftp/rfc949.txt
trunk/docs/rfcs/ftp/rfc959.txt
trunk/libs/NMock2.dll
trunk/libs/log4net.dll
trunk/libs/log4net.xml
trunk/libs/ncover/CommandBars.dll
trunk/libs/ncover/CoverLib.dll
trunk/libs/ncover/Coverage.xsl
trunk/libs/ncover/CoverageReport.xsl
trunk/libs/ncover/ICSharpCode.TextEditor.dll
trunk/libs/ncover/NCover.Console.exe
trunk/libs/ncover/NCover.Console.exe.config
trunk/libs/ncover/NCover.Framework.dll
trunk/libs/ncover/NCoverExplorer.Console.exe
trunk/libs/ncover/NCoverExplorer.Core.dll
trunk/libs/ncover/NCoverExplorer.NAntTasks.dll
trunk/libs/ncover/NCoverExplorer.NCoverRunner.dll
trunk/libs/ncover/NCoverExplorer.exe
trunk/libs/ncover/NCoverExplorer.exe.config
trunk/libs/ncover/NCoverFAQ.html
trunk/libs/ncover/nunit-console-runner.dll
trunk/libs/ncover/nunit-console.exe
trunk/libs/ncover/nunit-console.exe.config
trunk/libs/ncover/nunit.core.dll
trunk/libs/ncover/nunit.util.dll
trunk/libs/nunit.framework.dll

Download

Click the following link to download openservernet.zip.

openservernet.zip




















Home »
  C# Free Code »
    Network »




ActiveDirectory
Bluetooth
Client
FTP
LDAP
Network
Server
Socket
TCP
WCF