登录
首页 » C# » tftp4net-16532

tftp4net-16532

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

  • API-UPDOWN
    FTP上传下载源代码,用于上传和下,使用API函数写的,(FTP UP DOWN API)
    2014-03-27 14:42:57下载
    积分:1
  • winform-Mail
    c#+winform+简单的发邮件程序,本人测试可以用的,供大家学习(c#+ winform+ simple e-mail program, I test can be used for all learning)
    2020-09-09 10:58:02下载
    积分:1
  • ftp4j
    ftp4j是一个FTP客户端Java类库,实现了FTP客户端应具有的大部分功能。可以将ftp4j嵌到你的Java应用中,来传输文件(包括上传和下 载),浏览远程FTP服务器上的目录和文件,创建、删除、重命,移动远程目录和文件。ftp4j提供多种方式连接到远程FTP服务器包括:通过 TCP/IP直接连接,通过FTP代理、HTTP代理、SOCKS4/4a代理和SOCKS5代理连接,通过SSL安全连接。(ftp4j an FTP client-side Java class libraries, most of the functionality of the FTP client should have. You can ftp4j embedded in your Java applications, to transfer files (upload and download), browse directories and files on remote FTP server, create, delete, rename, move remote directories and files. ftp4j provide a variety of ways including: direct connection via TCP/IP through the FTP proxy, HTTP proxy SOCKS4/4a proxy and SOCKS5 proxy to connect through SSL secure connection to connect to a remote FTP server.)
    2021-04-22 10:58:49下载
    积分:1
  • smtp
    说明:  实现邮件告警,直接make一下,C语言stmp 使用方法如下:。./mail -s [标题] -f [发件人地址] -r [回复的邮件地址] -S [邮件服务器地址]-T [发送的字符串] -F [发送的文件名的内容] 收件人地址(To achieve e-mail alerts, make a direct look, C language stmp used as follows:. ./Mail-s [title]-f [sender addresses]-r [reply to e-mail address]-S [e-mail server address]-T [send string]-F [to send the contents of the file name] received pieces of the address)
    2011-03-18 13:49:58下载
    积分:1
  • FTP命令详解
    个人收集整理的常用ftp命令,可用做编程时候参考(Common FTP commands collected by individuals can be used for reference in programming)
    2020-06-21 20:20: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
  • Test
    ftp服务器类。。。可以实现上传下载删除操作(ftp server class. . . Deletion can upload and download)
    2013-03-29 13:55:51下载
    积分:1
  • ftp
    仅仅检验FTP是否还能用,如果站长不采纳 我可以再传点其他私人作品(Just check whether FTP is also used, if the owners do not adopt the other point I can re-transmission of private works)
    2011-11-21 00:08:00下载
    积分: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
  • Email_MAPI
    使用IMAPI完成Email client端功能 可attach 附加檔案(completed using disk-Email client can attach additional functions Archives)
    2005-03-23 14:38:36下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载