登录
首页 » C# » tftp4net-16532

tftp4net-16532

于 2012-06-03 发布 文件大小:136KB
0 156
下载积分: 1 下载次数: 18

代码说明:

  This projects implements the TFTP (Trivial File Transfer) protocol for .NET in an easy-to-use library. It allows you to integrate TFTP client and server functionality into your project. It is stable, unit-tested and comes with a sample TFTP client and server. The main focus is to provide an API that allows you to easily access TFTP servers (or serve TFTP clients) in your own applications. If you re looking for a fully-fledged, you should probably look into other projects. However, if you re looking for code that allows you to implement your own TFTP client/server in only a few lines of code, you ve come to the right place.

文件列表:

Tftp.Net
........\Channel
........\.......\ChannelFactory.cs,1390,2012-05-17
........\.......\IChannel.cs,597,2012-05-17
........\.......\UdpChannel.cs,4416,2012-05-17
........\Commands
........\........\CommandParser.cs,5514,2012-05-17
........\........\Commands.cs,3855,2012-05-17
........\........\CommandSerializer.cs,3548,2012-05-17
........\........\TftpStreamReader.cs,1230,2012-05-17
........\........\TftpStreamWriter.cs,819,2012-05-17
........\ITftpTransfer.cs,3059,2012-05-17
........\ITftpTransferOption.cs,627,2012-05-17
........\ITftpTransferOptions.cs,467,2012-05-17
........\Properties
........\..........\AssemblyInfo.cs,1601,2012-05-17
........\TftpClient.cs,1570,2012-05-17
........\TftpServer.cs,4001,2012-05-17
........\TftpTransferError.cs,3380,2012-05-17
........\Trace
........\.....\LoggingStateDecorator.cs,1648,2012-05-17
........\.....\TraceHelper.cs,786,2012-05-17
........\Transfer
........\........\InitialStateFactory.cs,1244,2012-05-17
........\........\LocalReadTransfer.cs,868,2012-05-17
........\........\LocalWriteTransfer.cs,871,2012-05-17
........\........\RemoteReadTransfer.cs,530,2012-05-17
........\........\RemoteWriteTransfer.cs,533,2012-05-17
........\........\SimpleTimer.cs,1226,2012-05-17
........\........\States
........\........\......\AcknowledgeWriteRequest.cs,1055,2012-05-17
........\........\......\BaseState.cs,837,2012-05-17
........\........\......\CancelledByUser.cs,659,2012-05-17
........\........\......\Closed.cs,360,2012-05-17
........\........\......\ITransferState.cs,648,2012-05-17
........\........\......\ReceivedError.cs,808,2012-05-17
........\........\......\Receiving.cs,2171,2012-05-17
........\........\......\Sending.cs,2432,2012-05-17
........\........\......\SendOptionAcknowledgementBase.cs,923,2012-05-17
........\........\......\SendOptionAcknowledgementForReadRequest.cs,685,2012-05-17
........\........\......\SendOptionAcknowledgementForWriteRequest.cs,792,2012-05-17
........\........\......\SendReadRequest.cs,2235,2012-05-17
........\........\......\SendWriteRequest.cs,1946,2012-05-17
........\........\......\StartIncomingRead.cs,1027,2012-05-17
........\........\......\StartIncomingWrite.cs,1034,2012-05-17
........\........\......\StartOutgoingRead.cs,563,2012-05-17
........\........\......\StartOutgoingWrite.cs,566,2012-05-17
........\........\......\StateThatExpectsMessagesFromDefaultEndPoint.cs,1619,2012-05-17
........\........\......\StateWithNetworkTimeout.cs,1630,2012-05-17
........\........\TftpTransfer.cs,4485,2012-05-17
........\........\TransferWithTimeout.cs,1137,2012-05-17
........\TransferOptions
........\...............\Handlers
........\...............\........\BlockSizeOption.cs,906,2012-05-17
........\...............\........\TimeoutIntervalOption.cs,886,2012-05-17
........\...............\........\TransferSizeOption.cs,1133,2012-05-17
........\...............\ITftpTransferOptionHandler.cs,560,2012-05-17
........\...............\TransferOption.cs,1009,2012-05-17
........\...............\TransferOptionHandlers.cs,2397,2012-05-17
........\...............\TransferOptionsBase.cs,716,2012-05-17
........\...............\TransferOptionsIncoming.cs,684,2012-05-17
........\...............\TransferOptionsOutgoing.cs,366,2012-05-17
Tftp.Net.SampleClient
.....................\Program.cs,1917,2012-05-17
.....................\Properties
.....................\..........\AssemblyInfo.cs,1577,2012-05-17
Tftp.Net.SampleServer
.....................\Program.cs,3776,2012-05-17
.....................\Properties
.....................\..........\AssemblyInfo.cs,1577,2012-05-17
Tftp.Net.UnitTests
..................\Channel
..................\.......\ITftpChannel_Test.cs,1733,2012-05-17
..................\.......\UdpChannel_Test.cs,901,2012-05-17
..................\Commands
..................\........\TftpCommandParserAndSerializer_Test.cs,3023,2012-05-17
..................\........\TftpCommand_Test.cs,1581,2012-05-17
..................\........\TftpStreamReader_Test.cs,2648,2012-05-17
..................\........\TftpStreamWriter_Test.cs,1907,2012-05-17
..................\ErrorFromRemoteEndpoint_Test.cs,911,2012-05-17
..................\Properties
..................\..........\AssemblyInfo.cs,1571,2012-05-17
..................\TftpClientServer_Test.cs,1494,2012-05-17
..................\Trace
..................\.....\TftpTrace_Test.cs,1451,2012-05-17
..................\Transfer
..................\........\SimpleTimer_Test.cs,1145,2012-05-17
..................\........\States
..................\........\......\CancelledByUserState_Test.cs,805,2012-05-17
..................\........\......\ClosedState_Test.cs,874,2012-05-17
..................\........\......\ReceivedErrorState_Test.cs,1449,2012-05-17
..................\........\......\ReceivingState_Test.cs,3701,2012-05-17
..................\........\......\SendingState_Test.cs,3762,2012-05-17
..................\........\......\SendReadRequestState_Test.cs,4498,2012-05-17
..................\........\......\SendWriteRequest_Test.cs,4618,2012-05-17
..................\........\......\StartIncomingReadState_Test.cs,2539,2012-05-17
..................\........\......\StartIncomingWriteState_Test.cs,2752,2012-05-17
..................\........\......\StartOutgoingRead_Test.cs,1158,2012-05-17
..................\........\......\StartOutgoingWrite_Test.cs,1105,2012-05-17
..................\........\......\TransferStub.cs,3615,2012-05-17

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • FTP命令详解
    说明:  个人收集整理的常用ftp命令,可用做编程时候参考(Common FTP commands collected by individuals can be used for reference in programming)
    2020-06-21 20:20:01下载
    积分:1
  • ftpcl
    底层实现ftp客户端(underlying implementation ftp client)
    2004-12-06 18:55:26下载
    积分:1
  • SendMail
    实现发送邮件功能,可配置收件人、发送内容(Send mail c# c# c# send mail send mail)
    2013-12-05 09:26:52下载
    积分:1
  • MFC-ftp
    MFC实现FTP客户端,支持断点续传的ftp,没有用到mfc提供的ftp类(The MFC implementation of the FTP client, support for HTTP, ftp, and did not use mfc ftp classes)
    2012-08-19 10:56:01下载
    积分:1
  • pop3xieyi
    详细模拟了pop3协议的原理和实现,对pop3进行了较深入的分析(Detailed simulation of the pop3 protocol and the realization of the principle of pop3 conducted more in-depth analysis)
    2008-02-20 13:26:33下载
    积分:1
  • FtpClient2
    FTP的客户端,用户可以能过FTP的客户端来实现FTP文件的管理等(FTP client, users can lead FTP client to achieve the FTP file management)
    2005-01-28 23:08:39下载
    积分:1
  • FtpTest
    Ftp传输,测试路径是否好用,传输文件,(ftp send)
    2012-04-24 17:56:32下载
    积分:1
  • SMapiSample
    收发邮件的模拟程序 代码经典 很好 学习的经典例子(收发邮件的模拟程序 代码经典 很好)
    2010-10-20 13:01:29下载
    积分:1
  • FTP
    Ftp客户端与服务器VC++完整版,是一个比较简单的ftp程序,但是程序提供了各种接口,能够让读者看法出各种复杂的ftp程序,程序中的各个程序模块均已经实现,以上所有程序在VC6.0中调试通过   目录ftp服务器是一个基于控制台的ftp服务器程序,能够实现大部分的FTP的服务器程序;   注意:    a.帐号密码为toldo    b.主目录为c:/temp,在连接之前请先建立(Ftp client and server, the full version of VC++, is a relatively simple ftp program, but the program offers a variety of interfaces, allowing readers to view a variety of complex ftp program, proceedings have been achieved in all program modules, all of the above procedures In VC6.0 debug directory ftp server through a console-based ftp server program, able to achieve most of the FTP server program Note: a. account password toldo b. the main directory is c:/temp, in connection before you build)
    2010-06-17 20:31:49下载
    积分:1
  • javasendmail
    用java mail写的邮件发送程序,使用smtp服务可以进行配置java mail using the mail was sent, the use smtp service can be configured(java mail using the mail was sent, the use smtp service can be configured)
    2013-07-19 11:07:34下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载