├── LSP.sdf ├── LSP.sln ├── LSP.suo ├── LSP.vssscc ├── LSPService ├── Debug │ └── LSPService.log ├── LSPService.cpp ├── LSPService.vcxproj ├── LSPService.vcxproj.filters ├── LSPService.vcxproj.user ├── LSPService.vcxproj.vspscc ├── SocketClient.cpp ├── SocketServer.cpp ├── configStatic.cpp ├── debug.cpp ├── redirector.cpp └── socketsDef.h ├── README.md ├── common ├── lspcommon.h └── provider.cpp ├── install ├── Debug │ └── instlsp.log ├── configStatic.cpp ├── instlsp.cpp ├── instlsp.h ├── instlsp.vcxproj ├── instlsp.vcxproj.filters ├── instlsp.vcxproj.user ├── instlsp.vcxproj.vspscc ├── lspadd.cpp ├── lspdel.cpp ├── lspmap.cpp ├── lsputil.cpp └── prnpinfo.cpp ├── non-ifs ├── Debug │ └── nonifslsp.log ├── asyncselect.cpp ├── configStatic.cpp ├── extension.cpp ├── logHelper.cpp ├── lspdef.h ├── lspguid.cpp ├── nonifslsp.def ├── nonifslsp.vcxproj ├── nonifslsp.vcxproj.filters ├── nonifslsp.vcxproj.user ├── nonifslsp.vcxproj.vspscc ├── overlap.cpp ├── sockinfo.cpp └── spi.cpp └── uninstall ├── Debug └── uninstall.log ├── configStatic.cpp ├── uninstall.cpp ├── uninstall.vcproj ├── uninstall.vcxproj ├── uninstall.vcxproj.user └── uninstall.vcxproj.vspscc /LSP.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSP.sdf -------------------------------------------------------------------------------- /LSP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSP.sln -------------------------------------------------------------------------------- /LSP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSP.suo -------------------------------------------------------------------------------- /LSP.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSP.vssscc -------------------------------------------------------------------------------- /LSPService/Debug/LSPService.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/Debug/LSPService.log -------------------------------------------------------------------------------- /LSPService/LSPService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/LSPService.cpp -------------------------------------------------------------------------------- /LSPService/LSPService.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/LSPService.vcxproj -------------------------------------------------------------------------------- /LSPService/LSPService.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/LSPService.vcxproj.filters -------------------------------------------------------------------------------- /LSPService/LSPService.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/LSPService.vcxproj.user -------------------------------------------------------------------------------- /LSPService/LSPService.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/LSPService.vcxproj.vspscc -------------------------------------------------------------------------------- /LSPService/SocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/SocketClient.cpp -------------------------------------------------------------------------------- /LSPService/SocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/SocketServer.cpp -------------------------------------------------------------------------------- /LSPService/configStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/configStatic.cpp -------------------------------------------------------------------------------- /LSPService/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/debug.cpp -------------------------------------------------------------------------------- /LSPService/redirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/redirector.cpp -------------------------------------------------------------------------------- /LSPService/socketsDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/LSPService/socketsDef.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | LSP 2 | === 3 | 4 | Layered Service Provider (LSP) http redirector 5 | -------------------------------------------------------------------------------- /common/lspcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/common/lspcommon.h -------------------------------------------------------------------------------- /common/provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/common/provider.cpp -------------------------------------------------------------------------------- /install/Debug/instlsp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/Debug/instlsp.log -------------------------------------------------------------------------------- /install/configStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/configStatic.cpp -------------------------------------------------------------------------------- /install/instlsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.cpp -------------------------------------------------------------------------------- /install/instlsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.h -------------------------------------------------------------------------------- /install/instlsp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.vcxproj -------------------------------------------------------------------------------- /install/instlsp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.vcxproj.filters -------------------------------------------------------------------------------- /install/instlsp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.vcxproj.user -------------------------------------------------------------------------------- /install/instlsp.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/instlsp.vcxproj.vspscc -------------------------------------------------------------------------------- /install/lspadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/lspadd.cpp -------------------------------------------------------------------------------- /install/lspdel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/lspdel.cpp -------------------------------------------------------------------------------- /install/lspmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/lspmap.cpp -------------------------------------------------------------------------------- /install/lsputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/lsputil.cpp -------------------------------------------------------------------------------- /install/prnpinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/install/prnpinfo.cpp -------------------------------------------------------------------------------- /non-ifs/Debug/nonifslsp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/Debug/nonifslsp.log -------------------------------------------------------------------------------- /non-ifs/asyncselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/asyncselect.cpp -------------------------------------------------------------------------------- /non-ifs/configStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/configStatic.cpp -------------------------------------------------------------------------------- /non-ifs/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/extension.cpp -------------------------------------------------------------------------------- /non-ifs/logHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/logHelper.cpp -------------------------------------------------------------------------------- /non-ifs/lspdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/lspdef.h -------------------------------------------------------------------------------- /non-ifs/lspguid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/lspguid.cpp -------------------------------------------------------------------------------- /non-ifs/nonifslsp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/nonifslsp.def -------------------------------------------------------------------------------- /non-ifs/nonifslsp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/nonifslsp.vcxproj -------------------------------------------------------------------------------- /non-ifs/nonifslsp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/nonifslsp.vcxproj.filters -------------------------------------------------------------------------------- /non-ifs/nonifslsp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/nonifslsp.vcxproj.user -------------------------------------------------------------------------------- /non-ifs/nonifslsp.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/nonifslsp.vcxproj.vspscc -------------------------------------------------------------------------------- /non-ifs/overlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/overlap.cpp -------------------------------------------------------------------------------- /non-ifs/sockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/sockinfo.cpp -------------------------------------------------------------------------------- /non-ifs/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/non-ifs/spi.cpp -------------------------------------------------------------------------------- /uninstall/Debug/uninstall.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/Debug/uninstall.log -------------------------------------------------------------------------------- /uninstall/configStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/configStatic.cpp -------------------------------------------------------------------------------- /uninstall/uninstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/uninstall.cpp -------------------------------------------------------------------------------- /uninstall/uninstall.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/uninstall.vcproj -------------------------------------------------------------------------------- /uninstall/uninstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/uninstall.vcxproj -------------------------------------------------------------------------------- /uninstall/uninstall.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/uninstall.vcxproj.user -------------------------------------------------------------------------------- /uninstall/uninstall.vcxproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpalanco/LSP/HEAD/uninstall/uninstall.vcxproj.vspscc --------------------------------------------------------------------------------