基本信息
源码名称:高性能跨平台内网穿透工具FastTunnel
源码大小:0.49M
文件格式:.zip
开发语言:C#
更新时间:2021-12-02
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
高性能跨平台内网穿透工具,使用它可以实现将内网服务暴露到公网供自己或任何人访问。
  • 与其他穿透工具不同的是,FastTunnel项目致力于打造一个易于扩展、易于维护的内网穿透框架。
  • 你可以通过引用FastTunnel.Core的nuget包构建出自己的穿透应用,并针自己所需的业务扩展功能。


.
├── FastTunnel-v2
│   ├── Dockerfile
│   ├── FastTunnel.Api
│   │   ├── Controllers
│   │   │   ├── AccountController.cs
│   │   │   ├── BaseController.cs
│   │   │   └── SystemController.cs
│   │   ├── FastTunnel.Api.csproj
│   │   ├── Filters
│   │   │   └── CustomExceptionFilterAttribute.cs
│   │   ├── Models
│   │   │   ├── ApiResponse.cs
│   │   │   └── GetTokenRequest.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           └── ref
│   │   └── obj
│   │       └── Debug
│   │           └── net5.0
│   │               ├── FastTunnel.Api.AssemblyInfo.cs
│   │               ├── FastTunnel.Api.AssemblyInfoInputs.cache
│   │               ├── FastTunnel.Api.GeneratedMSBuildEditorConfig.editorconfig
│   │               └── ref
│   ├── FastTunnel.Client
│   │   ├── FastTunnel.Client.csproj
│   │   ├── Program.cs
│   │   ├── SuiDao.Client.csproj.user
│   │   ├── appsettings.json
│   │   ├── bin
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           └── ref
│   │   ├── install.bat
│   │   ├── log4net.config
│   │   ├── obj
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           ├── FastTunnel.Client.AssemblyInfo.cs
│   │   │           ├── FastTunnel.Client.AssemblyInfoInputs.cache
│   │   │           ├── FastTunnel.Client.GeneratedMSBuildEditorConfig.editorconfig
│   │   │           ├── FastTunnel.Client.csproj.AssemblyReference.cache
│   │   │           ├── FastTunnel.Client.csproj.FileListAbsolute.txt
│   │   │           └── ref
│   │   └── uninstall.bat
│   ├── FastTunnel.Core
│   │   ├── Client
│   │   │   ├── FastTunnelClient.cs
│   │   │   ├── FastTunnelServer.cs
│   │   │   └── IFastTunnelClient.cs
│   │   ├── Config
│   │   │   ├── DefaultClientConfig.cs
│   │   │   ├── DefaultServerConfig.cs
│   │   │   ├── IClientConfig.cs
│   │   │   └── IServerConfig.cs
│   │   ├── Exceptions
│   │   │   ├── APIErrorException.cs
│   │   │   ├── ClienOffLineException.cs
│   │   │   └── SocketClosedException.cs
│   │   ├── Extensions
│   │   │   ├── ByteArrayExtensions.cs
│   │   │   ├── DateTimeExtensions.cs
│   │   │   ├── LoggerExtentions.cs
│   │   │   ├── ObjectExtensions.cs
│   │   │   ├── ServicesExtensions.cs
│   │   │   ├── SocketExtensions.cs
│   │   │   ├── TaskCompletionSourceExtensions.cs
│   │   │   └── WebSocketExtensions.cs
│   │   ├── FastTunnel.Core.csproj
│   │   ├── FastTunnelConst.cs
│   │   ├── Filters
│   │   │   └── FastTunnelExceptionFilter.cs
│   │   ├── Forwarder
│   │   │   ├── FastTunnelForwarderHttpClientFactory.cs
│   │   │   ├── FastTunnelProxyConfig.cs
│   │   │   ├── FastTunnelProxyConfigProvider.cs
│   │   │   ├── InMemoryConfigProvider.cs
│   │   │   ├── MiddleWare
│   │   │   │   ├── FastTunnelClientHandler.cs
│   │   │   │   └── FastTunnelSwapHandler.cs
│   │   │   ├── ResponseStream.cs
│   │   │   ├── TranStream.cs
│   │   │   └── WebSocketStream.cs
│   │   ├── Handlers
│   │   │   ├── Client
│   │   │   │   ├── IClientHandler.cs
│   │   │   │   ├── LogHandler.cs
│   │   │   │   └── SwapHandler.cs
│   │   │   └── Server
│   │   │       ├── ForwardDispatcher.cs
│   │   │       ├── IClientMessageHandler.cs
│   │   │       ├── ILoginHandler.cs
│   │   │       └── LoginHandler.cs
│   │   ├── Htmls
│   │   │   ├── HostReqired.html
│   │   │   ├── NoSite.html
│   │   │   └── TunnelNotFound.html
│   │   ├── Listener
│   │   │   └── PortProxyListener.cs
│   │   ├── Models
│   │   │   ├── ForwardConfig.cs
│   │   │   ├── ForwardHandlerArg.cs
│   │   │   ├── ForwardInfo.cs
│   │   │   ├── Massage
│   │   │   │   ├── LogInMassage.cs
│   │   │   │   └── TunnelMassage.cs
│   │   │   ├── Message.cs
│   │   │   ├── TunnelClient.cs
│   │   │   ├── WebConfig.cs
│   │   │   └── WebInfo.cs
│   │   ├── Protocol
│   │   │   └── TunnelProtocol.cs
│   │   ├── README.md
│   │   ├── README_zh.md
│   │   ├── Services
│   │   │   └── ServiceFastTunnelClient.cs
│   │   ├── Sockets
│   │   │   └── DnsSocketFactory.cs
│   │   ├── TunnelResource.Designer.cs
│   │   ├── TunnelResource.resx
│   │   ├── Utilitys
│   │   │   └── AssemblyUtility.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           └── ref
│   │   └── obj
│   │       └── Debug
│   │           └── net5.0
│   │               ├── FastTunnel.Core.AssemblyInfo.cs
│   │               ├── FastTunnel.Core.AssemblyInfoInputs.cache
│   │               ├── FastTunnel.Core.GeneratedMSBuildEditorConfig.editorconfig
│   │               ├── FastTunnel.Core.csproj.FileListAbsolute.txt
│   │               └── ref
│   ├── FastTunnel.Server
│   │   ├── FastTunnel.Server.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── PublishProfiles
│   │   │   │   ├── FolderProfile.pubxml
│   │   │   │   ├── FolderProfile1.pubxml
│   │   │   │   └── FolderProfile2.pubxml
│   │   │   └── launchSettings.json
│   │   ├── Startup.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           └── ref
│   │   ├── config
│   │   │   ├── appsettings.Development.json
│   │   │   └── appsettings.json
│   │   ├── install.bat
│   │   ├── log4net.config
│   │   ├── obj
│   │   │   └── Debug
│   │   │       └── net5.0
│   │   │           ├── FastTunnel.Server.AssemblyInfo.cs
│   │   │           ├── FastTunnel.Server.AssemblyInfoInputs.cache
│   │   │           ├── FastTunnel.Server.GeneratedMSBuildEditorConfig.editorconfig
│   │   │           ├── FastTunnel.Server.csproj.AssemblyReference.cache
│   │   │           └── ref
│   │   ├── uninstall.bat
│   │   └── wwwroot
│   │       └── index.html
│   ├── FastTunnel.sln
│   ├── LICENSE
│   ├── README.md
│   ├── README_zh.md
│   ├── addhost.bat
│   ├── fasttunnel.service
│   ├── images
│   │   ├── FastTunnel交流群-2群聊二维码.png
│   │   ├── gvp.png
│   │   ├── logo.png
│   │   └── qqgroup.png
│   ├── publish-win.sh
│   ├── publish.sh
│   └── start.sh
└── 好例子网_FastTunnel-v2.zip

63 directories, 116 files