├── .gitignore ├── BaseLibrary ├── Alert.cpp ├── Alert.h ├── AuthenticationHeader.cpp ├── AuthenticationHeader.h ├── AutoCritical.cpp ├── AutoCritical.h ├── AutoFont.cpp ├── AutoFont.h ├── Base64.cpp ├── Base64.h ├── BaseLibrary.h ├── BaseLibrary.vcxproj ├── BaseLibrary.vcxproj.filters ├── CRC32.cpp ├── CRC32.h ├── ConvertWideString.cpp ├── ConvertWideString.h ├── Cookie.cpp ├── Cookie.h ├── CrackURL.cpp ├── CrackURL.h ├── Crypto.cpp ├── Crypto.h ├── Encoding.h ├── Environment.cpp ├── Environment.h ├── EventLogRegistration.cpp ├── EventLogRegistration.h ├── ExecuteProcess.cpp ├── ExecuteProcess.h ├── ExecuteShell.cpp ├── ExecuteShell.h ├── FileBuffer.cpp ├── FileBuffer.h ├── FileDialog.cpp ├── FileDialog.h ├── GenerateGUID.cpp ├── GenerateGUID.h ├── GetExePath.cpp ├── GetExePath.h ├── GetLastErrorAsString.cpp ├── GetLastErrorAsString.h ├── GetUserAccount.cpp ├── GetUserAccount.h ├── HPFCounter.cpp ├── HPFCounter.h ├── HTTPError.cpp ├── HTTPError.h ├── HTTPMessage.cpp ├── HTTPMessage.h ├── HTTPTime.cpp ├── HTTPTime.h ├── Headers.h ├── JSONMessage.cpp ├── JSONMessage.h ├── JSONParser.cpp ├── JSONParser.h ├── JSONPath.cpp ├── JSONPath.h ├── JSONPointer.cpp ├── JSONPointer.h ├── LogAnalysis.cpp ├── LogAnalysis.h ├── MapDialog.cpp ├── MapDialog.h ├── MultiPartBuffer.cpp ├── MultiPartBuffer.h ├── Namespace.cpp ├── Namespace.h ├── PrintToken.cpp ├── PrintToken.h ├── ProcInfo.cpp ├── ProcInfo.h ├── QueryReWriter.cpp ├── QueryReWriter.h ├── Redirect.cpp ├── Redirect.h ├── Routing.h ├── RunRedirect.cpp ├── RunRedirect.h ├── SOAPMessage.cpp ├── SOAPMessage.h ├── SOAPSecurity.cpp ├── SOAPSecurity.h ├── ServiceQuality.cpp ├── ServiceQuality.h ├── ServiceReporting.cpp ├── ServiceReporting.h ├── SoapTypes.h ├── StackTrace.cpp ├── StackTrace.h ├── StdException.cpp ├── StdException.h ├── StoreMessage.cpp ├── StoreMessage.h ├── StringUtilities.cpp ├── StringUtilities.h ├── WideMessageBox.cpp ├── WideMessageBox.h ├── WinFile.cpp ├── WinFile.h ├── WinINETError.h ├── WinPing.cpp ├── WinPing.h ├── WinPingIPHeader.h ├── XMLDataType.cpp ├── XMLDataType.h ├── XMLMessage.cpp ├── XMLMessage.h ├── XMLParser.cpp ├── XMLParser.h ├── XMLParserJSON.cpp ├── XMLParserJSON.h ├── XMLRestriction.cpp ├── XMLRestriction.h ├── XMLTemporal.cpp ├── XMLTemporal.h ├── XPath.cpp ├── XPath.h ├── XSDSchema.cpp ├── XSDSchema.h ├── XString.cpp ├── XString.h ├── XStringBuilder.cpp ├── XStringBuilder.h ├── ZIP │ ├── adler32.cpp │ ├── deflate.cpp │ ├── deflate.h │ ├── gzguts.h │ ├── gzip.cpp │ ├── gzip.h │ ├── inffast.cpp │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.cpp │ ├── inflate.h │ ├── inftrees.cpp │ ├── inftrees.h │ ├── trees.cpp │ ├── trees.h │ ├── zconf.h │ ├── zipcrc32.cpp │ ├── zipcrc32.h │ ├── zlib.h │ ├── zutil.cpp │ └── zutil.h ├── bcd.cpp ├── bcd.h ├── framework.h ├── pch.cpp ├── pch.h ├── targetver.h ├── unzip.cpp ├── unzip.h ├── xmem.cpp └── xmem.h ├── Documentation ├── Releasenotes.txt └── WinSock FAQ.chm ├── HTTPSYS.sln ├── HTTPSYS ├── CertificateInfo.cpp ├── CertificateInfo.h ├── CreateCertificate.cpp ├── CreateCertificate.h ├── ErrorPages.cpp ├── GetUserAccount.cpp ├── GetUserAccount.h ├── HTTPLoglevel.h ├── HTTPReadRegister.cpp ├── HTTPReadRegister.h ├── HTTPSYS.vcxproj ├── HTTPSYS.vcxproj.filters ├── HTTPSYS_Websocket.h ├── HttpAddFragmentToCache.cpp ├── HttpAddUrl.cpp ├── HttpAddUrlToUrlGroup.cpp ├── HttpCancelHttpRequest.cpp ├── HttpCloseRequestQueue.cpp ├── HttpCloseServerSession.cpp ├── HttpCloseUrlGroup.cpp ├── HttpCloseWebSocket.cpp ├── HttpCreateHttpHandle.cpp ├── HttpCreateRequestQueue.cpp ├── HttpCreateServerSession.cpp ├── HttpCreateUrlGroup.cpp ├── HttpDeclarePush.cpp ├── HttpDeleteServiceConfiguration.cpp ├── HttpFlushResponseCache.cpp ├── HttpInitialize.cpp ├── HttpQueryRequestQueueProperty.cpp ├── HttpQueryUrlGroupProperty.cpp ├── HttpReadFragmentFromCache.cpp ├── HttpReceiveClientCertificate.cpp ├── HttpReceiveHttpRequest.cpp ├── HttpReceiveRequestEntityBody.cpp ├── HttpReceiveWebSocket.cpp ├── HttpRemoveUrl.cpp ├── HttpRemoveUrlFromUrlGroup.cpp ├── HttpSendHttpResponse.cpp ├── HttpSendResponseEntityBody.cpp ├── HttpSetRequestQueueProperty.cpp ├── HttpSetServerSessionProperty.cpp ├── HttpSetUrlGroupProperty.cpp ├── HttpShutdownRequestQueue.cpp ├── HttpTerminate.cpp ├── HttpWaitForDemandStart.cpp ├── HttpWaitForDisconnect.cpp ├── Listener.cpp ├── Listener.h ├── Logging.h ├── OpaqueHandles.cpp ├── OpaqueHandles.h ├── PlainSocket.cpp ├── PlainSocket.h ├── Request.cpp ├── Request.h ├── RequestQueue.cpp ├── RequestQueue.h ├── SSLTracer.cpp ├── SSLTracer.h ├── SSLUtilities.cpp ├── SSLUtilities.h ├── SYSWebSocket.cpp ├── SYSWebSocket.h ├── SecureServerSocket.cpp ├── SecureServerSocket.h ├── ServerSession.cpp ├── ServerSession.h ├── SocketStream.cpp ├── SocketStream.h ├── SplitUrlPrefix.cpp ├── URL.h ├── UrlGroup.cpp ├── UrlGroup.h ├── Version.h ├── http_private.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── Planning.md ├── README.md ├── framework.h ├── pushcloud.cmd └── sourceclean.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/.gitignore -------------------------------------------------------------------------------- /BaseLibrary/Alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Alert.cpp -------------------------------------------------------------------------------- /BaseLibrary/Alert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Alert.h -------------------------------------------------------------------------------- /BaseLibrary/AuthenticationHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AuthenticationHeader.cpp -------------------------------------------------------------------------------- /BaseLibrary/AuthenticationHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AuthenticationHeader.h -------------------------------------------------------------------------------- /BaseLibrary/AutoCritical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AutoCritical.cpp -------------------------------------------------------------------------------- /BaseLibrary/AutoCritical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AutoCritical.h -------------------------------------------------------------------------------- /BaseLibrary/AutoFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AutoFont.cpp -------------------------------------------------------------------------------- /BaseLibrary/AutoFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/AutoFont.h -------------------------------------------------------------------------------- /BaseLibrary/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Base64.cpp -------------------------------------------------------------------------------- /BaseLibrary/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Base64.h -------------------------------------------------------------------------------- /BaseLibrary/BaseLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/BaseLibrary.h -------------------------------------------------------------------------------- /BaseLibrary/BaseLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/BaseLibrary.vcxproj -------------------------------------------------------------------------------- /BaseLibrary/BaseLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/BaseLibrary.vcxproj.filters -------------------------------------------------------------------------------- /BaseLibrary/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/CRC32.cpp -------------------------------------------------------------------------------- /BaseLibrary/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/CRC32.h -------------------------------------------------------------------------------- /BaseLibrary/ConvertWideString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ConvertWideString.cpp -------------------------------------------------------------------------------- /BaseLibrary/ConvertWideString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ConvertWideString.h -------------------------------------------------------------------------------- /BaseLibrary/Cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Cookie.cpp -------------------------------------------------------------------------------- /BaseLibrary/Cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Cookie.h -------------------------------------------------------------------------------- /BaseLibrary/CrackURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/CrackURL.cpp -------------------------------------------------------------------------------- /BaseLibrary/CrackURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/CrackURL.h -------------------------------------------------------------------------------- /BaseLibrary/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Crypto.cpp -------------------------------------------------------------------------------- /BaseLibrary/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Crypto.h -------------------------------------------------------------------------------- /BaseLibrary/Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Encoding.h -------------------------------------------------------------------------------- /BaseLibrary/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Environment.cpp -------------------------------------------------------------------------------- /BaseLibrary/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Environment.h -------------------------------------------------------------------------------- /BaseLibrary/EventLogRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/EventLogRegistration.cpp -------------------------------------------------------------------------------- /BaseLibrary/EventLogRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/EventLogRegistration.h -------------------------------------------------------------------------------- /BaseLibrary/ExecuteProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ExecuteProcess.cpp -------------------------------------------------------------------------------- /BaseLibrary/ExecuteProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ExecuteProcess.h -------------------------------------------------------------------------------- /BaseLibrary/ExecuteShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ExecuteShell.cpp -------------------------------------------------------------------------------- /BaseLibrary/ExecuteShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ExecuteShell.h -------------------------------------------------------------------------------- /BaseLibrary/FileBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/FileBuffer.cpp -------------------------------------------------------------------------------- /BaseLibrary/FileBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/FileBuffer.h -------------------------------------------------------------------------------- /BaseLibrary/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/FileDialog.cpp -------------------------------------------------------------------------------- /BaseLibrary/FileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/FileDialog.h -------------------------------------------------------------------------------- /BaseLibrary/GenerateGUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GenerateGUID.cpp -------------------------------------------------------------------------------- /BaseLibrary/GenerateGUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GenerateGUID.h -------------------------------------------------------------------------------- /BaseLibrary/GetExePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetExePath.cpp -------------------------------------------------------------------------------- /BaseLibrary/GetExePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetExePath.h -------------------------------------------------------------------------------- /BaseLibrary/GetLastErrorAsString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetLastErrorAsString.cpp -------------------------------------------------------------------------------- /BaseLibrary/GetLastErrorAsString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetLastErrorAsString.h -------------------------------------------------------------------------------- /BaseLibrary/GetUserAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetUserAccount.cpp -------------------------------------------------------------------------------- /BaseLibrary/GetUserAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/GetUserAccount.h -------------------------------------------------------------------------------- /BaseLibrary/HPFCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HPFCounter.cpp -------------------------------------------------------------------------------- /BaseLibrary/HPFCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HPFCounter.h -------------------------------------------------------------------------------- /BaseLibrary/HTTPError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPError.cpp -------------------------------------------------------------------------------- /BaseLibrary/HTTPError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPError.h -------------------------------------------------------------------------------- /BaseLibrary/HTTPMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPMessage.cpp -------------------------------------------------------------------------------- /BaseLibrary/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPMessage.h -------------------------------------------------------------------------------- /BaseLibrary/HTTPTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPTime.cpp -------------------------------------------------------------------------------- /BaseLibrary/HTTPTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/HTTPTime.h -------------------------------------------------------------------------------- /BaseLibrary/Headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Headers.h -------------------------------------------------------------------------------- /BaseLibrary/JSONMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONMessage.cpp -------------------------------------------------------------------------------- /BaseLibrary/JSONMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONMessage.h -------------------------------------------------------------------------------- /BaseLibrary/JSONParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONParser.cpp -------------------------------------------------------------------------------- /BaseLibrary/JSONParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONParser.h -------------------------------------------------------------------------------- /BaseLibrary/JSONPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONPath.cpp -------------------------------------------------------------------------------- /BaseLibrary/JSONPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONPath.h -------------------------------------------------------------------------------- /BaseLibrary/JSONPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONPointer.cpp -------------------------------------------------------------------------------- /BaseLibrary/JSONPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/JSONPointer.h -------------------------------------------------------------------------------- /BaseLibrary/LogAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/LogAnalysis.cpp -------------------------------------------------------------------------------- /BaseLibrary/LogAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/LogAnalysis.h -------------------------------------------------------------------------------- /BaseLibrary/MapDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/MapDialog.cpp -------------------------------------------------------------------------------- /BaseLibrary/MapDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/MapDialog.h -------------------------------------------------------------------------------- /BaseLibrary/MultiPartBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/MultiPartBuffer.cpp -------------------------------------------------------------------------------- /BaseLibrary/MultiPartBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/MultiPartBuffer.h -------------------------------------------------------------------------------- /BaseLibrary/Namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Namespace.cpp -------------------------------------------------------------------------------- /BaseLibrary/Namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Namespace.h -------------------------------------------------------------------------------- /BaseLibrary/PrintToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/PrintToken.cpp -------------------------------------------------------------------------------- /BaseLibrary/PrintToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/PrintToken.h -------------------------------------------------------------------------------- /BaseLibrary/ProcInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ProcInfo.cpp -------------------------------------------------------------------------------- /BaseLibrary/ProcInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ProcInfo.h -------------------------------------------------------------------------------- /BaseLibrary/QueryReWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/QueryReWriter.cpp -------------------------------------------------------------------------------- /BaseLibrary/QueryReWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/QueryReWriter.h -------------------------------------------------------------------------------- /BaseLibrary/Redirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Redirect.cpp -------------------------------------------------------------------------------- /BaseLibrary/Redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Redirect.h -------------------------------------------------------------------------------- /BaseLibrary/Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/Routing.h -------------------------------------------------------------------------------- /BaseLibrary/RunRedirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/RunRedirect.cpp -------------------------------------------------------------------------------- /BaseLibrary/RunRedirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/RunRedirect.h -------------------------------------------------------------------------------- /BaseLibrary/SOAPMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/SOAPMessage.cpp -------------------------------------------------------------------------------- /BaseLibrary/SOAPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/SOAPMessage.h -------------------------------------------------------------------------------- /BaseLibrary/SOAPSecurity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/SOAPSecurity.cpp -------------------------------------------------------------------------------- /BaseLibrary/SOAPSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/SOAPSecurity.h -------------------------------------------------------------------------------- /BaseLibrary/ServiceQuality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ServiceQuality.cpp -------------------------------------------------------------------------------- /BaseLibrary/ServiceQuality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ServiceQuality.h -------------------------------------------------------------------------------- /BaseLibrary/ServiceReporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ServiceReporting.cpp -------------------------------------------------------------------------------- /BaseLibrary/ServiceReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ServiceReporting.h -------------------------------------------------------------------------------- /BaseLibrary/SoapTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/SoapTypes.h -------------------------------------------------------------------------------- /BaseLibrary/StackTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StackTrace.cpp -------------------------------------------------------------------------------- /BaseLibrary/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StackTrace.h -------------------------------------------------------------------------------- /BaseLibrary/StdException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StdException.cpp -------------------------------------------------------------------------------- /BaseLibrary/StdException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StdException.h -------------------------------------------------------------------------------- /BaseLibrary/StoreMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StoreMessage.cpp -------------------------------------------------------------------------------- /BaseLibrary/StoreMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StoreMessage.h -------------------------------------------------------------------------------- /BaseLibrary/StringUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StringUtilities.cpp -------------------------------------------------------------------------------- /BaseLibrary/StringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/StringUtilities.h -------------------------------------------------------------------------------- /BaseLibrary/WideMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WideMessageBox.cpp -------------------------------------------------------------------------------- /BaseLibrary/WideMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WideMessageBox.h -------------------------------------------------------------------------------- /BaseLibrary/WinFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinFile.cpp -------------------------------------------------------------------------------- /BaseLibrary/WinFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinFile.h -------------------------------------------------------------------------------- /BaseLibrary/WinINETError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinINETError.h -------------------------------------------------------------------------------- /BaseLibrary/WinPing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinPing.cpp -------------------------------------------------------------------------------- /BaseLibrary/WinPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinPing.h -------------------------------------------------------------------------------- /BaseLibrary/WinPingIPHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/WinPingIPHeader.h -------------------------------------------------------------------------------- /BaseLibrary/XMLDataType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLDataType.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLDataType.h -------------------------------------------------------------------------------- /BaseLibrary/XMLMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLMessage.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLMessage.h -------------------------------------------------------------------------------- /BaseLibrary/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLParser.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLParser.h -------------------------------------------------------------------------------- /BaseLibrary/XMLParserJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLParserJSON.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLParserJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLParserJSON.h -------------------------------------------------------------------------------- /BaseLibrary/XMLRestriction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLRestriction.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLRestriction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLRestriction.h -------------------------------------------------------------------------------- /BaseLibrary/XMLTemporal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLTemporal.cpp -------------------------------------------------------------------------------- /BaseLibrary/XMLTemporal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XMLTemporal.h -------------------------------------------------------------------------------- /BaseLibrary/XPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XPath.cpp -------------------------------------------------------------------------------- /BaseLibrary/XPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XPath.h -------------------------------------------------------------------------------- /BaseLibrary/XSDSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XSDSchema.cpp -------------------------------------------------------------------------------- /BaseLibrary/XSDSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XSDSchema.h -------------------------------------------------------------------------------- /BaseLibrary/XString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XString.cpp -------------------------------------------------------------------------------- /BaseLibrary/XString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XString.h -------------------------------------------------------------------------------- /BaseLibrary/XStringBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XStringBuilder.cpp -------------------------------------------------------------------------------- /BaseLibrary/XStringBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/XStringBuilder.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/adler32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/adler32.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/deflate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/deflate.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/deflate.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/gzguts.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/gzip.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/gzip.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inffast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inffast.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inffast.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inffixed.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inflate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inflate.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inflate.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inftrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inftrees.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/inftrees.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/trees.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/trees.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zconf.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zipcrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zipcrc32.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zipcrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zipcrc32.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zlib.h -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zutil.cpp -------------------------------------------------------------------------------- /BaseLibrary/ZIP/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/ZIP/zutil.h -------------------------------------------------------------------------------- /BaseLibrary/bcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/bcd.cpp -------------------------------------------------------------------------------- /BaseLibrary/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/bcd.h -------------------------------------------------------------------------------- /BaseLibrary/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/framework.h -------------------------------------------------------------------------------- /BaseLibrary/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/pch.cpp -------------------------------------------------------------------------------- /BaseLibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/pch.h -------------------------------------------------------------------------------- /BaseLibrary/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/targetver.h -------------------------------------------------------------------------------- /BaseLibrary/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/unzip.cpp -------------------------------------------------------------------------------- /BaseLibrary/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/unzip.h -------------------------------------------------------------------------------- /BaseLibrary/xmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/xmem.cpp -------------------------------------------------------------------------------- /BaseLibrary/xmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/BaseLibrary/xmem.h -------------------------------------------------------------------------------- /Documentation/Releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/Documentation/Releasenotes.txt -------------------------------------------------------------------------------- /Documentation/WinSock FAQ.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/Documentation/WinSock FAQ.chm -------------------------------------------------------------------------------- /HTTPSYS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS.sln -------------------------------------------------------------------------------- /HTTPSYS/CertificateInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/CertificateInfo.cpp -------------------------------------------------------------------------------- /HTTPSYS/CertificateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/CertificateInfo.h -------------------------------------------------------------------------------- /HTTPSYS/CreateCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/CreateCertificate.cpp -------------------------------------------------------------------------------- /HTTPSYS/CreateCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/CreateCertificate.h -------------------------------------------------------------------------------- /HTTPSYS/ErrorPages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/ErrorPages.cpp -------------------------------------------------------------------------------- /HTTPSYS/GetUserAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/GetUserAccount.cpp -------------------------------------------------------------------------------- /HTTPSYS/GetUserAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/GetUserAccount.h -------------------------------------------------------------------------------- /HTTPSYS/HTTPLoglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPLoglevel.h -------------------------------------------------------------------------------- /HTTPSYS/HTTPReadRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPReadRegister.cpp -------------------------------------------------------------------------------- /HTTPSYS/HTTPReadRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPReadRegister.h -------------------------------------------------------------------------------- /HTTPSYS/HTTPSYS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPSYS.vcxproj -------------------------------------------------------------------------------- /HTTPSYS/HTTPSYS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPSYS.vcxproj.filters -------------------------------------------------------------------------------- /HTTPSYS/HTTPSYS_Websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HTTPSYS_Websocket.h -------------------------------------------------------------------------------- /HTTPSYS/HttpAddFragmentToCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpAddFragmentToCache.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpAddUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpAddUrl.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpAddUrlToUrlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpAddUrlToUrlGroup.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCancelHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCancelHttpRequest.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCloseRequestQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCloseRequestQueue.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCloseServerSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCloseServerSession.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCloseUrlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCloseUrlGroup.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCloseWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCloseWebSocket.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCreateHttpHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCreateHttpHandle.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCreateRequestQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCreateRequestQueue.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCreateServerSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCreateServerSession.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpCreateUrlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpCreateUrlGroup.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpDeclarePush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpDeclarePush.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpDeleteServiceConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpDeleteServiceConfiguration.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpFlushResponseCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpFlushResponseCache.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpInitialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpInitialize.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpQueryRequestQueueProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpQueryRequestQueueProperty.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpQueryUrlGroupProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpQueryUrlGroupProperty.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpReadFragmentFromCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpReadFragmentFromCache.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpReceiveClientCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpReceiveClientCertificate.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpReceiveHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpReceiveHttpRequest.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpReceiveRequestEntityBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpReceiveRequestEntityBody.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpReceiveWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpReceiveWebSocket.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpRemoveUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpRemoveUrl.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpRemoveUrlFromUrlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpRemoveUrlFromUrlGroup.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpSendHttpResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpSendHttpResponse.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpSendResponseEntityBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpSendResponseEntityBody.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpSetRequestQueueProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpSetRequestQueueProperty.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpSetServerSessionProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpSetServerSessionProperty.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpSetUrlGroupProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpSetUrlGroupProperty.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpShutdownRequestQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpShutdownRequestQueue.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpTerminate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpTerminate.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpWaitForDemandStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpWaitForDemandStart.cpp -------------------------------------------------------------------------------- /HTTPSYS/HttpWaitForDisconnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/HttpWaitForDisconnect.cpp -------------------------------------------------------------------------------- /HTTPSYS/Listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Listener.cpp -------------------------------------------------------------------------------- /HTTPSYS/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Listener.h -------------------------------------------------------------------------------- /HTTPSYS/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Logging.h -------------------------------------------------------------------------------- /HTTPSYS/OpaqueHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/OpaqueHandles.cpp -------------------------------------------------------------------------------- /HTTPSYS/OpaqueHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/OpaqueHandles.h -------------------------------------------------------------------------------- /HTTPSYS/PlainSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/PlainSocket.cpp -------------------------------------------------------------------------------- /HTTPSYS/PlainSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/PlainSocket.h -------------------------------------------------------------------------------- /HTTPSYS/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Request.cpp -------------------------------------------------------------------------------- /HTTPSYS/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Request.h -------------------------------------------------------------------------------- /HTTPSYS/RequestQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/RequestQueue.cpp -------------------------------------------------------------------------------- /HTTPSYS/RequestQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/RequestQueue.h -------------------------------------------------------------------------------- /HTTPSYS/SSLTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SSLTracer.cpp -------------------------------------------------------------------------------- /HTTPSYS/SSLTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SSLTracer.h -------------------------------------------------------------------------------- /HTTPSYS/SSLUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SSLUtilities.cpp -------------------------------------------------------------------------------- /HTTPSYS/SSLUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SSLUtilities.h -------------------------------------------------------------------------------- /HTTPSYS/SYSWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SYSWebSocket.cpp -------------------------------------------------------------------------------- /HTTPSYS/SYSWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SYSWebSocket.h -------------------------------------------------------------------------------- /HTTPSYS/SecureServerSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SecureServerSocket.cpp -------------------------------------------------------------------------------- /HTTPSYS/SecureServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SecureServerSocket.h -------------------------------------------------------------------------------- /HTTPSYS/ServerSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/ServerSession.cpp -------------------------------------------------------------------------------- /HTTPSYS/ServerSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/ServerSession.h -------------------------------------------------------------------------------- /HTTPSYS/SocketStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SocketStream.cpp -------------------------------------------------------------------------------- /HTTPSYS/SocketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SocketStream.h -------------------------------------------------------------------------------- /HTTPSYS/SplitUrlPrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/SplitUrlPrefix.cpp -------------------------------------------------------------------------------- /HTTPSYS/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/URL.h -------------------------------------------------------------------------------- /HTTPSYS/UrlGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/UrlGroup.cpp -------------------------------------------------------------------------------- /HTTPSYS/UrlGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/UrlGroup.h -------------------------------------------------------------------------------- /HTTPSYS/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/Version.h -------------------------------------------------------------------------------- /HTTPSYS/http_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/http_private.h -------------------------------------------------------------------------------- /HTTPSYS/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /HTTPSYS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/stdafx.h -------------------------------------------------------------------------------- /HTTPSYS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/HTTPSYS/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/LICENSE -------------------------------------------------------------------------------- /Planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/Planning.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/README.md -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/framework.h -------------------------------------------------------------------------------- /pushcloud.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/pushcloud.cmd -------------------------------------------------------------------------------- /sourceclean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwig/HTTPSYS/HEAD/sourceclean.cmd --------------------------------------------------------------------------------