lazebird.rabbit.tftp
2.0.2
See the version list below for details.
dotnet add package lazebird.rabbit.tftp --version 2.0.2
NuGet\Install-Package lazebird.rabbit.tftp -Version 2.0.2
<PackageReference Include="lazebird.rabbit.tftp" Version="2.0.2" />
paket add lazebird.rabbit.tftp --version 2.0.2
#r "nuget: lazebird.rabbit.tftp, 2.0.2"
// Install lazebird.rabbit.tftp as a Cake Addin
#addin nuget:?package=lazebird.rabbit.tftp&version=2.0.2
// Install lazebird.rabbit.tftp as a Cake Tool
#tool nuget:?package=lazebird.rabbit.tftp&version=2.0.2
rtftpd
Description
Target
API
public rtftpd(Func<int, string, int> log)
Constructor Log: log output interface; the first parameter is the output position, 0 means automatic position, the second parameter is the string to be output, and the return value is the output position; the interface is initially used for peer progress update of ListBox.public void add_dir(string dir)
Add a folder to the root directory Path: folder pathpublic void del_dir(string path)
Delete a folder from the root directory Path: folder pathpublic void start(int port)
Start the serverpublic void stop()
Stop the server while emptying the listening folder
Sample
rtftpd rtftpd = new rtftpd(rtftpd_log_func);
rtftpd.add_dir(t.Text);
int rtftpd_log_func(int line, string msg)
{
return rtftpdlog.write(line, msg);
}
Product | Versions |
---|---|
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
-
- Tftp.Net (>= 1.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.0 | 533 | 6/27/2019 |
2.1.1 | 664 | 9/11/2018 |
2.1.0 | 719 | 8/15/2018 |
2.0.9 | 659 | 7/31/2018 |
2.0.8 | 708 | 7/27/2018 |
2.0.7 | 655 | 7/27/2018 |
2.0.6 | 704 | 7/27/2018 |
2.0.5 | 720 | 7/26/2018 |
2.0.4 | 666 | 7/24/2018 |
2.0.3 | 648 | 7/23/2018 |
2.0.2 | 798 | 7/3/2018 |
2.0.1 | 759 | 7/3/2018 |
2.0.0 | 760 | 7/2/2018 |
1.0.0 | 766 | 6/28/2018 |
support tftp add dir, del dir