登录
首页 » C# » tftp4net-16532

tftp4net-16532

于 2012-06-03 发布 文件大小:136KB
0 184
下载积分: 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 个回复

  • 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
  • FTP_client_by_C
    遵照FTP协议编写的FTP客服端程序,可以与服务器程序互联传输文件(AC_FTP is a file transfer protocol client that uses asynchronous socket operation mode and utilizes many programming techniques described in detail throughout the book. It connects to an FTP server, sends commands and receives replies according to rfc959.txt">RFC 959 to get and put files, change directories, get file lists, delete files.)
    2009-04-27 16:03:43下载
    积分:1
  • JavaFTPclient
    这是关于Java的FTP客户端程序的设计与实现的论文。里面包含了具体的实现方法,希望对大家有用。(This is about Java, FTP client program design and implementation of papers。Which contains a specific implementation, and I hope for all of us.)
    2009-11-23 20:34:29下载
    积分:1
  • 服务器实例client/server
    服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例服务器客户端实例
    2022-01-22 04:42:41下载
    积分:1
  • 02772
    API实现FTP上传源码程序,调用API函数实现FTP的连接、断开、上传文件等功能。(API implement FTP upload source program, call the API functions to achieve FTP connection , disconnection , uploading files and other functions .)
    2016-12-12 12:41:19下载
    积分:1
  • WarftpPccproxy
    用C语言编写,分别攻击了Warftp和ccproxy两个漏洞(这两个漏洞只在windows xp sp2中存在,sp3和win7已经修复。因此需要安装一个sp2的虚拟机),攻击完成后,会弹出一个攻击成功的对话框,程序比较基础,但是能够帮助初学者深刻了解缓冲区溢出的原理。(Using C language, were attacked Warftp and ccproxy two vulnerabilities (both vulnerability only exists in windows xp sp2, sp3 and win7 has been repaired, so you need to install a virtual machine sp2), and after the attack is completed, it will pop up a successful attack dialog program basis for comparison, but a deep understanding of the principles that can help beginners buffer overflow.)
    2014-07-21 15:58:30下载
    积分:1
  • FtpServers
    ftp服务器,简单容易弄,无需配置,即可操作。(FTP server.)
    2013-12-22 17:06:44下载
    积分:1
  • Netmanag
    网络管理程序。含ping,ftp,smtp等功能 (Network manage app , having ping , ftp and smtp etc)
    2020-11-14 21:59:42下载
    积分: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
  • w5500 DHCP 源代码
    官方的DHCP 客户端源代码,经本人亲自验证 100% 可用。
    2023-05-25 06:20:04下载
    积分:1
  • 696518资源总数
  • 106265会员总数
  • 10今日下载