登录
首页 » C# » tftp4net-16532

tftp4net-16532

于 2012-06-03 发布 文件大小:136KB
0 193
下载积分: 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多线程上传源码,用于对象方式实现多线程上传(Easy language FTP multi thread upload source code for the object to achieve multi-threaded upload)
    2015-07-11 23:28:58下载
    积分:1
  • linux 下WiFi定位的实现
    在Linux系统上利用GTK技术编写了一个WiFi定位客户端,可以实现与服务器通信,WiFi指纹信号强度采集,得到准确的坐标位置。客户端分为离线指纹数据采集和实时定位两个部分设计。在各个Linux系统上可以运行,只要设置好与服务器的通信就可以进行数据的正常传输。也可以在代码上进行改进,进行更多功能的扩展
    2022-11-27 04:10:03下载
    积分:1
  • samba_AND_vsftpd_share
    自己做的一个总结,samba和vsftpd实现主机与虚拟机文件共享(A summary of myself, samba and vsftpd to achieve the host and virtual machine file sharing)
    2010-05-20 09:29:53下载
    积分:1
  • Email
    邮件软件:该程序需要两个服务器,一个用来发送邮件,一个用来接受邮件,一般我们用pop3协议来接收邮件,用smtp协议来发送邮件。(E-mail software: the program requires two servers, one used to send a message, a message to accept the general protocol we use to receive mail pop3, smtp protocol used to send messages.)
    2009-05-28 09:45:34下载
    积分:1
  • smtp2_source
    发送email的程序 (Email sending a)
    2001-01-01 00:00:00下载
    积分:1
  • TFTPSRV
    这是开发2410的时候用的一个服务器软件,希望能有用吧。(This is a development of 2410, when a server software with the hope it useful.)
    2008-07-18 09:02:47下载
    积分:1
  • FtpSync
    很棒的FTP客户端程序,支持自动下载同步软件功能。对站长用于同步远程服务器上的程序,挺有用(FTP client program, great support synchronization software automatically downloads. Synchronization program on a remote server, the webmaster is used quite useless)
    2013-04-15 14:29:29下载
    积分:1
  • 4813043
    易语言FTP更新IP源码,结合易语言互联网支持库,调用API函数实现FTP更新IP地址。(Easy language FTP update IP source code, combined with easy language support library Internet calling API functions FTP update IP address .)
    2015-11-13 20:50:31下载
    积分:1
  • 最小化托盘,系统升级
    最小化托盘,客户端系统升级 1、最新化拖托盘 2、下载远程服务器新版本系统, 3、解压覆盖
    2022-03-16 02:13:46下载
    积分:1
  • mail
    说明:  一个发送邮件的小程序,亲测可用,希望大家喜欢,无毒无后门请放心下载!(a program can send email,safe code please download without coiroisly!)
    2020-06-16 08:40:01下载
    积分:1
  • 696516资源总数
  • 106648会员总数
  • 8今日下载