├── .DS_Store ├── .gitattributes ├── .gitignore ├── Bridge ├── HttpBridgeActivity.cs ├── HttpBridgeClient.cs ├── HttpBridgeMime.cs └── HttpBridgeRequest.cs ├── ImageCast.md ├── LICENSE ├── Mime ├── HttpMime.cs ├── HttpMimeContext.cs ├── HttpMimeRequest.cs ├── HttpMimeResponse.cs ├── HttpMimeServier.cs ├── HttpMimeSocket.cs ├── HttpMimeStream.cs └── HttpWebSocket.cs ├── Program.cs ├── Proxy ├── AvifConverter.cs ├── DataFactory.cs ├── Entities │ ├── Codes │ │ ├── Cookie.cs │ │ ├── Site.cs │ │ └── SiteHost.cs │ ├── Cookie.cs │ ├── Initializer.cs │ └── Site.cs ├── HttpProxy.cs ├── LogSetting.cs ├── SiteActivity.cs ├── SiteAppActivity.cs ├── SiteAuthActivity.cs ├── SiteConfActivity.cs ├── SiteConfImageActivity.cs ├── SiteConfig.cs ├── SiteImage.cs ├── SiteLogActivity.cs ├── SiteLogConfActivity.cs ├── SiteMimeActivity.cs ├── SiteServerActivity.cs ├── SiteUserActivity.cs ├── Utility.cs ├── WebFactory.cs └── WebServlet.cs ├── README.md ├── Resources ├── Auth │ ├── dingtalk.html │ ├── nosupport.html │ └── wxwork.html ├── app.png ├── check.html ├── close.html ├── desktop.doc.html ├── desktop.html ├── desktop.page.html ├── desktop.site.html ├── desktop.ui.html ├── desktop.umc.html ├── dingtalk.html ├── dir.html ├── error.html ├── favicon.ico ├── login-html.html ├── login.html ├── pc.html ├── pwd-Compel.html ├── pwd-Select.html ├── pwd-Selected.html ├── umc.html ├── user.html ├── weixin.html └── wxwork.html ├── UMC.Host.csproj └── WebVPN.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.DS_Store -------------------------------------------------------------------------------- /Bridge/HttpBridgeActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Bridge/HttpBridgeActivity.cs -------------------------------------------------------------------------------- /Bridge/HttpBridgeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Bridge/HttpBridgeClient.cs -------------------------------------------------------------------------------- /Bridge/HttpBridgeMime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Bridge/HttpBridgeMime.cs -------------------------------------------------------------------------------- /Bridge/HttpBridgeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Bridge/HttpBridgeRequest.cs -------------------------------------------------------------------------------- /ImageCast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/ImageCast.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /Mime/HttpMime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMime.cs -------------------------------------------------------------------------------- /Mime/HttpMimeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeContext.cs -------------------------------------------------------------------------------- /Mime/HttpMimeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeRequest.cs -------------------------------------------------------------------------------- /Mime/HttpMimeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeResponse.cs -------------------------------------------------------------------------------- /Mime/HttpMimeServier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeServier.cs -------------------------------------------------------------------------------- /Mime/HttpMimeSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeSocket.cs -------------------------------------------------------------------------------- /Mime/HttpMimeStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpMimeStream.cs -------------------------------------------------------------------------------- /Mime/HttpWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Mime/HttpWebSocket.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Program.cs -------------------------------------------------------------------------------- /Proxy/AvifConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/AvifConverter.cs -------------------------------------------------------------------------------- /Proxy/DataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/DataFactory.cs -------------------------------------------------------------------------------- /Proxy/Entities/Codes/Cookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Codes/Cookie.cs -------------------------------------------------------------------------------- /Proxy/Entities/Codes/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Codes/Site.cs -------------------------------------------------------------------------------- /Proxy/Entities/Codes/SiteHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Codes/SiteHost.cs -------------------------------------------------------------------------------- /Proxy/Entities/Cookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Cookie.cs -------------------------------------------------------------------------------- /Proxy/Entities/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Initializer.cs -------------------------------------------------------------------------------- /Proxy/Entities/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Entities/Site.cs -------------------------------------------------------------------------------- /Proxy/HttpProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/HttpProxy.cs -------------------------------------------------------------------------------- /Proxy/LogSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/LogSetting.cs -------------------------------------------------------------------------------- /Proxy/SiteActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteAppActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteAppActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteAuthActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteAuthActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteConfActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteConfActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteConfImageActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteConfImageActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteConfig.cs -------------------------------------------------------------------------------- /Proxy/SiteImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteImage.cs -------------------------------------------------------------------------------- /Proxy/SiteLogActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteLogActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteLogConfActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteLogConfActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteMimeActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteMimeActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteServerActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteServerActivity.cs -------------------------------------------------------------------------------- /Proxy/SiteUserActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/SiteUserActivity.cs -------------------------------------------------------------------------------- /Proxy/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/Utility.cs -------------------------------------------------------------------------------- /Proxy/WebFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/WebFactory.cs -------------------------------------------------------------------------------- /Proxy/WebServlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Proxy/WebServlet.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Auth/dingtalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/Auth/dingtalk.html -------------------------------------------------------------------------------- /Resources/Auth/nosupport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/Auth/nosupport.html -------------------------------------------------------------------------------- /Resources/Auth/wxwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/Auth/wxwork.html -------------------------------------------------------------------------------- /Resources/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/app.png -------------------------------------------------------------------------------- /Resources/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/check.html -------------------------------------------------------------------------------- /Resources/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/close.html -------------------------------------------------------------------------------- /Resources/desktop.doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.doc.html -------------------------------------------------------------------------------- /Resources/desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.html -------------------------------------------------------------------------------- /Resources/desktop.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.page.html -------------------------------------------------------------------------------- /Resources/desktop.site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.site.html -------------------------------------------------------------------------------- /Resources/desktop.ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.ui.html -------------------------------------------------------------------------------- /Resources/desktop.umc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/desktop.umc.html -------------------------------------------------------------------------------- /Resources/dingtalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/dingtalk.html -------------------------------------------------------------------------------- /Resources/dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/dir.html -------------------------------------------------------------------------------- /Resources/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/error.html -------------------------------------------------------------------------------- /Resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/favicon.ico -------------------------------------------------------------------------------- /Resources/login-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/login-html.html -------------------------------------------------------------------------------- /Resources/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/login.html -------------------------------------------------------------------------------- /Resources/pc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/pc.html -------------------------------------------------------------------------------- /Resources/pwd-Compel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/pwd-Compel.html -------------------------------------------------------------------------------- /Resources/pwd-Select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/pwd-Select.html -------------------------------------------------------------------------------- /Resources/pwd-Selected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/pwd-Selected.html -------------------------------------------------------------------------------- /Resources/umc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/umc.html -------------------------------------------------------------------------------- /Resources/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/user.html -------------------------------------------------------------------------------- /Resources/weixin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/weixin.html -------------------------------------------------------------------------------- /Resources/wxwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/Resources/wxwork.html -------------------------------------------------------------------------------- /UMC.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/UMC.Host.csproj -------------------------------------------------------------------------------- /WebVPN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiumc/Gateway/HEAD/WebVPN.md --------------------------------------------------------------------------------