├── .gitattributes ├── .gitignore ├── Doc ├── ARQ Sequence Diagram.jpg ├── Basic Component - mini.jpg ├── Example.c ├── Example.cpp ├── HP-Socket ARQ Class Diagram.jpg ├── HP-Socket Class Diagram.jpg ├── HP-Socket Class Diagram.uml ├── HP-Socket Development Guide.pdf ├── HP-Socket HTTP Class Diagram.jpg ├── HP-Socket Logo.png ├── HP-Socket SSL Class Diagram.jpg ├── HP-Socket Sequence Diagram.jpg ├── HP-Socket-Agent-Demo.jpg ├── HP-Socket-Agent.jpg ├── HP-Socket-Client.jpg ├── HP-Socket-Server.jpg ├── HTTP Component - mini.jpg ├── PUSH-PULL-PACK.jpg ├── SSL Component - mini.jpg └── UdpNode Sequence Diagram.jpg ├── DotNet ├── README.md └── README_zh.md ├── LICENSE ├── Linux ├── Change-APIs.txt ├── Change-Log.txt ├── LICENSE ├── README.md ├── demo │ ├── Android.mk │ ├── Application.mk │ ├── build-android-ndk-demo.bat │ ├── build-android-ndk-demo.sh │ ├── global │ │ ├── Crypto.cpp │ │ ├── Crypto.h │ │ ├── helper.cpp │ │ └── helper.h │ ├── ssl-cert │ │ ├── ca.cer │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── ca.pem │ │ ├── ca2.cer │ │ ├── ca2.crt │ │ ├── ca2.key │ │ ├── ca2.pem │ │ ├── client.cer │ │ ├── client.crt │ │ ├── client.csr │ │ ├── client.key │ │ ├── client.pem │ │ ├── client2.cer │ │ ├── client2.crt │ │ ├── client2.csr │ │ ├── client2.key │ │ ├── client2.pem │ │ ├── server.cer │ │ ├── server.crt │ │ ├── server.csr │ │ ├── server.key │ │ ├── server.pem │ │ ├── server2.cer │ │ ├── server2.crt │ │ ├── server2.csr │ │ ├── server2.key │ │ ├── server2.pem │ │ ├── ssl-cert-ext.txt │ │ └── ssl-cert-ext2.txt │ ├── testecho-arq-pfm │ │ ├── Android.mk │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-arq-pfm.sln │ ├── testecho-arq │ │ ├── Android.mk │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-arq.sln │ ├── testecho-http-4c │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ ├── syncclient │ │ │ ├── syncclient.cpp │ │ │ ├── syncclient.vcxproj │ │ │ ├── syncclient.vcxproj.filters │ │ │ └── syncclient.vcxproj.user │ │ └── testecho-http-4c.sln │ ├── testecho-http │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ ├── syncclient │ │ │ ├── syncclient.cpp │ │ │ ├── syncclient.vcxproj │ │ │ ├── syncclient.vcxproj.filters │ │ │ └── syncclient.vcxproj.user │ │ └── testecho-http.sln │ ├── testecho-lib │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-lib.sln │ ├── testecho-pack │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-pack.sln │ ├── testecho-pfm │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-pfm.sln │ ├── testecho-pull │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-pull.sln │ ├── testecho-ssl-pack │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-ssl-pack.sln │ ├── testecho-ssl-pfm │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-ssl-pfm.sln │ ├── testecho-ssl-pull │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-ssl-pull.sln │ ├── testecho-ssl │ │ ├── Android.mk │ │ ├── agent │ │ │ ├── agent.cpp │ │ │ ├── agent.vcxproj │ │ │ ├── agent.vcxproj.filters │ │ │ └── agent.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-ssl.sln │ ├── testecho-udp-pfm │ │ ├── Android.mk │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-udp-pfm.sln │ ├── testecho-udp │ │ ├── Android.mk │ │ ├── cast │ │ │ ├── cast.cpp │ │ │ ├── cast.vcxproj │ │ │ ├── cast.vcxproj.filters │ │ │ └── cast.vcxproj.user │ │ ├── client │ │ │ ├── client.cpp │ │ │ ├── client.vcxproj │ │ │ ├── client.vcxproj.filters │ │ │ └── client.vcxproj.user │ │ ├── node │ │ │ ├── node.cpp │ │ │ ├── node.vcxproj │ │ │ ├── node.vcxproj.filters │ │ │ └── node.vcxproj.user │ │ ├── server │ │ │ ├── server.cpp │ │ │ ├── server.vcxproj │ │ │ ├── server.vcxproj.filters │ │ │ └── server.vcxproj.user │ │ └── testecho-udp.sln │ └── testecho │ │ ├── Android.mk │ │ ├── agent │ │ ├── agent.cpp │ │ ├── agent.vcxproj │ │ ├── agent.vcxproj.filters │ │ └── agent.vcxproj.user │ │ ├── client │ │ ├── client.cpp │ │ ├── client.vcxproj │ │ ├── client.vcxproj.filters │ │ └── client.vcxproj.user │ │ ├── server │ │ ├── server.cpp │ │ ├── server.vcxproj │ │ ├── server.vcxproj.filters │ │ └── server.vcxproj.user │ │ └── testecho.sln ├── dependent │ ├── android-ndk │ │ ├── arm64-v8a │ │ │ ├── include │ │ │ │ ├── brotli │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── shared_dictionary.h │ │ │ │ │ └── types.h │ │ │ │ ├── iconv.h │ │ │ │ ├── libcharset.h │ │ │ │ ├── localcharset.h │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ │ ├── libbrotli.a │ │ │ │ ├── libcharset.a │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libiconv.a │ │ │ │ ├── libmimalloc.a │ │ │ │ └── libssl.a │ │ ├── armeabi-v7a │ │ │ ├── include │ │ │ │ ├── brotli │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── shared_dictionary.h │ │ │ │ │ └── types.h │ │ │ │ ├── iconv.h │ │ │ │ ├── libcharset.h │ │ │ │ ├── localcharset.h │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ │ ├── libbrotli.a │ │ │ │ ├── libcharset.a │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libiconv.a │ │ │ │ ├── libmimalloc.a │ │ │ │ └── libssl.a │ │ ├── x86 │ │ │ ├── include │ │ │ │ ├── brotli │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── shared_dictionary.h │ │ │ │ │ └── types.h │ │ │ │ ├── iconv.h │ │ │ │ ├── libcharset.h │ │ │ │ ├── localcharset.h │ │ │ │ └── openssl │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ │ ├── libbrotli.a │ │ │ │ ├── libcharset.a │ │ │ │ ├── libcrypto.a │ │ │ │ ├── libiconv.a │ │ │ │ ├── libmimalloc.a │ │ │ │ └── libssl.a │ │ └── x86_64 │ │ │ ├── include │ │ │ ├── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ │ ├── iconv.h │ │ │ ├── libcharset.h │ │ │ ├── localcharset.h │ │ │ └── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ ├── libbrotli.a │ │ │ ├── libcharset.a │ │ │ ├── libcrypto.a │ │ │ ├── libiconv.a │ │ │ ├── libmimalloc.a │ │ │ └── libssl.a │ ├── arm │ │ ├── include │ │ │ ├── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ │ ├── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── lib │ │ │ ├── libbrotli.a │ │ │ ├── libcrypto.a │ │ │ ├── libjemalloc_pic.a │ │ │ ├── libmimalloc.a │ │ │ ├── libssl.a │ │ │ └── libz.a │ ├── arm64 │ │ ├── include │ │ │ ├── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ │ ├── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── lib │ │ │ ├── libbrotli.a │ │ │ ├── libcrypto.a │ │ │ ├── libjemalloc_pic.a │ │ │ ├── libmimalloc.a │ │ │ ├── libssl.a │ │ │ └── libz.a │ ├── x64 │ │ ├── include │ │ │ ├── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ │ ├── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── lib │ │ │ ├── libbrotli.a │ │ │ ├── libcrypto.a │ │ │ ├── libjemalloc_pic.a │ │ │ ├── libmimalloc.a │ │ │ ├── libssl.a │ │ │ └── libz.a │ └── x86 │ │ ├── include │ │ ├── brotli │ │ │ ├── decode.h │ │ │ ├── encode.h │ │ │ ├── port.h │ │ │ ├── shared_dictionary.h │ │ │ └── types.h │ │ ├── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cmp.h │ │ │ ├── cmp_util.h │ │ │ ├── cmperr.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── configuration.h │ │ │ ├── conftypes.h │ │ │ ├── core.h │ │ │ ├── core_dispatch.h │ │ │ ├── core_names.h │ │ │ ├── core_object.h │ │ │ ├── crmf.h │ │ │ ├── crmferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── cryptoerr_legacy.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── decoder.h │ │ │ ├── decodererr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── encoder.h │ │ │ ├── encodererr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── ess.h │ │ │ ├── esserr.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── fips_names.h │ │ │ ├── fipskey.h │ │ │ ├── hmac.h │ │ │ ├── http.h │ │ │ ├── httperr.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── macros.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── param_build.h │ │ │ ├── params.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── prov_ssl.h │ │ │ ├── proverr.h │ │ │ ├── provider.h │ │ │ ├── rand.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── self_test.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── sslerr_legacy.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── trace.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── types.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ ├── zconf.h │ │ └── zlib.h │ │ └── lib │ │ ├── libbrotli.a │ │ ├── libcrypto.a │ │ ├── libjemalloc_pic.a │ │ ├── libmimalloc.a │ │ ├── libssl.a │ │ └── libz.a ├── include │ └── hpsocket │ │ ├── GlobalDef.h │ │ ├── GlobalErrno.h │ │ ├── HPSocket-SSL.h │ │ ├── HPSocket.h │ │ ├── HPSocket4C-SSL.h │ │ ├── HPSocket4C.h │ │ ├── HPTypeDef.h │ │ └── SocketInterface.h ├── project │ ├── Version.props │ ├── android-ndk │ │ └── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ ├── hpsocket-2017.sln │ ├── hpsocket-2017 │ │ ├── hpsocket.vcxproj │ │ ├── hpsocket.vcxproj.filters │ │ └── hpsocket.vcxproj.user │ ├── hpsocket-2019.sln │ ├── hpsocket-2019 │ │ ├── hpsocket.vcxproj │ │ ├── hpsocket.vcxproj.filters │ │ └── hpsocket.vcxproj.user │ ├── hpsocket-2022.sln │ ├── hpsocket-2022 │ │ ├── hpsocket.vcxproj │ │ ├── hpsocket.vcxproj.filters │ │ └── hpsocket.vcxproj.user │ ├── hpsocket4c-2017 │ │ ├── hpsocket4c.vcxproj │ │ ├── hpsocket4c.vcxproj.filters │ │ └── hpsocket4c.vcxproj.user │ ├── hpsocket4c-2019 │ │ ├── hpsocket4c.vcxproj │ │ ├── hpsocket4c.vcxproj.filters │ │ └── hpsocket4c.vcxproj.user │ └── hpsocket4c-2022 │ │ ├── hpsocket4c.vcxproj │ │ ├── hpsocket4c.vcxproj.filters │ │ └── hpsocket4c.vcxproj.user ├── script │ ├── build-android-ndk.bat │ ├── build-android-ndk.sh │ ├── clean.sh │ ├── compile.sh │ ├── cp-dependent.sh │ ├── cp-include.sh │ ├── env.sh │ ├── install.sh │ ├── ms-build-all.bat │ ├── ms-build-demos.bat │ ├── ms-build-libs.bat │ ├── ms-clean-all.bat │ ├── ms-clean.bat │ ├── post-link.sh │ └── pre-link.sh └── src │ ├── ArqHelper.cpp │ ├── ArqHelper.h │ ├── HPSocket-SSL.cpp │ ├── HPSocket.cpp │ ├── HPSocket4C-SSL.cpp │ ├── HPSocket4C.cpp │ ├── HPThreadPool.cpp │ ├── HPThreadPool.h │ ├── HttpAgent.cpp │ ├── HttpAgent.h │ ├── HttpClient.cpp │ ├── HttpClient.h │ ├── HttpCookie.cpp │ ├── HttpCookie.h │ ├── HttpHelper.cpp │ ├── HttpHelper.h │ ├── HttpServer.cpp │ ├── HttpServer.h │ ├── InternalDef.h │ ├── MiscHelper.cpp │ ├── MiscHelper.h │ ├── SSLAgent.cpp │ ├── SSLAgent.h │ ├── SSLClient.cpp │ ├── SSLClient.h │ ├── SSLHelper.cpp │ ├── SSLHelper.h │ ├── SSLServer.cpp │ ├── SSLServer.h │ ├── SocketHelper.cpp │ ├── SocketHelper.h │ ├── SocketObject4C.h │ ├── TcpAgent.cpp │ ├── TcpAgent.h │ ├── TcpClient.cpp │ ├── TcpClient.h │ ├── TcpPackAgent.cpp │ ├── TcpPackAgent.h │ ├── TcpPackClient.cpp │ ├── TcpPackClient.h │ ├── TcpPackServer.cpp │ ├── TcpPackServer.h │ ├── TcpPullAgent.cpp │ ├── TcpPullAgent.h │ ├── TcpPullClient.cpp │ ├── TcpPullClient.h │ ├── TcpPullServer.cpp │ ├── TcpPullServer.h │ ├── TcpServer.cpp │ ├── TcpServer.h │ ├── UdpArqClient.cpp │ ├── UdpArqClient.h │ ├── UdpArqServer.cpp │ ├── UdpArqServer.h │ ├── UdpCast.cpp │ ├── UdpCast.h │ ├── UdpClient.cpp │ ├── UdpClient.h │ ├── UdpNode.cpp │ ├── UdpNode.h │ ├── UdpServer.cpp │ ├── UdpServer.h │ └── common │ ├── BufferPool.cpp │ ├── BufferPool.h │ ├── BufferPtr.h │ ├── CriSec.h │ ├── Event.cpp │ ├── Event.h │ ├── FileHelper.cpp │ ├── FileHelper.h │ ├── FuncHelper.cpp │ ├── FuncHelper.h │ ├── GeneralHelper.h │ ├── IODispatcher.cpp │ ├── IODispatcher.h │ ├── PollHelper.cpp │ ├── PollHelper.h │ ├── PrivateHeap.h │ ├── RWLock.cpp │ ├── RWLock.h │ ├── RingBuffer.h │ ├── STLHelper.h │ ├── Semaphore.h │ ├── SignalHandler.h │ ├── Singleton.h │ ├── StringT.h │ ├── SysHelper.cpp │ ├── SysHelper.h │ ├── Thread.cpp │ ├── Thread.h │ ├── http │ ├── Readme.txt │ ├── llhttp.h │ ├── llhttp_api.c │ ├── llhttp_internal.c │ ├── llhttp_support.c │ ├── llhttp_url.c │ └── llhttp_url.h │ └── kcp │ ├── Readme.txt │ ├── ikcp.c │ └── ikcp.h ├── MacOS ├── README.md └── README_zh.md ├── README.md ├── README_zh.md └── Windows ├── Change-APIs.txt ├── Change-Log.txt ├── Demo ├── Global │ ├── crypto.cpp │ ├── crypto.h │ ├── helper.cpp │ └── helper.h ├── HttpProxy │ ├── HttpProxy.sln │ ├── Server-1 │ │ ├── ReadMe.txt │ │ ├── Server-1.vcxproj │ │ ├── Server-1.vcxproj.filters │ │ ├── Server-1.vcxproj.user │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── Server-2 │ │ ├── ReadMe.txt │ │ ├── Server-2.vcxproj │ │ ├── Server-2.vcxproj.filters │ │ ├── Server-2.vcxproj.user │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ ├── Server.ico │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── TestEcho-4C │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-4C.sln ├── TestEcho-ARQ-PFM │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-ARQ-PFM.sln ├── TestEcho-ARQ │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-ARQ.sln ├── TestEcho-Agent │ ├── Agent-4C │ │ ├── Agent-4C.vcxproj │ │ ├── Agent-4C.vcxproj.filters │ │ ├── Agent-4C.vcxproj.user │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Agent-PFM │ │ ├── Agent-PFM.vcxproj │ │ ├── Agent-PFM.vcxproj.filters │ │ ├── Agent-PFM.vcxproj.user │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Agent-Pull │ │ ├── Agent-Pull.vcxproj │ │ ├── Agent-Pull.vcxproj.filters │ │ ├── Agent-Pull.vcxproj.user │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-Agent.sln ├── TestEcho-Http-4C │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── SyncClient │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── SyncClient.vcxproj │ │ ├── SyncClient.vcxproj.filters │ │ ├── SyncClient.vcxproj.user │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-Http-4C.sln ├── TestEcho-Http │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── SyncClient │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── SyncClient.vcxproj │ │ ├── SyncClient.vcxproj.filters │ │ ├── SyncClient.vcxproj.user │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-Http.sln ├── TestEcho-PFM │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-PFM.sln ├── TestEcho-Pack │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-Pack.sln ├── TestEcho-Pull │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-Pull.sln ├── TestEcho-SSL-4C │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-SSL-4C.sln ├── TestEcho-SSL-PFM │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-SSL-PFM.sln ├── TestEcho-SSL-Pack │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-SSL-Pack.sln ├── TestEcho-SSL │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-SSL.sln ├── TestEcho-UDP-PFM │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-UDP-PFM.sln ├── TestEcho-UDP │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho-UDP.sln ├── TestEcho │ ├── Client │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Server │ │ ├── ReadMe.txt │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── Server.rc │ │ ├── Server.vcxproj │ │ ├── Server.vcxproj.filters │ │ ├── Server.vcxproj.user │ │ ├── ServerDlg.cpp │ │ ├── ServerDlg.h │ │ ├── res │ │ │ ├── Server.ico │ │ │ └── Server.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestEcho.sln ├── TestUDPCast │ ├── Member │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── Client.rc │ │ ├── Client.vcxproj │ │ ├── Client.vcxproj.filters │ │ ├── Client.vcxproj.user │ │ ├── ClientDlg.cpp │ │ ├── ClientDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Client.ico │ │ │ └── Client.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestUDPCast.sln ├── TestUDPNode │ ├── Node │ │ ├── Node.cpp │ │ ├── Node.h │ │ ├── Node.rc │ │ ├── Node.vcxproj │ │ ├── Node.vcxproj.filters │ │ ├── Node.vcxproj.user │ │ ├── NodeDlg.cpp │ │ ├── NodeDlg.h │ │ ├── ReadMe.txt │ │ ├── res │ │ │ ├── Node.ico │ │ │ └── Node.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ └── TestUDPNode.sln └── ssl-cert │ ├── ca.cer │ ├── ca.crt │ ├── ca.key │ ├── ca.pem │ ├── ca2.cer │ ├── ca2.crt │ ├── ca2.key │ ├── ca2.pem │ ├── client.cer │ ├── client.crt │ ├── client.csr │ ├── client.key │ ├── client.pem │ ├── client2.cer │ ├── client2.crt │ ├── client2.csr │ ├── client2.key │ ├── client2.pem │ ├── server.cer │ ├── server.crt │ ├── server.csr │ ├── server.key │ ├── server.pem │ ├── server2.cer │ ├── server2.crt │ ├── server2.csr │ ├── server2.key │ ├── server2.pem │ ├── ssl-cert-ext.txt │ └── ssl-cert-ext2.txt ├── Dependent ├── brotli │ ├── 100 │ │ ├── x64 │ │ │ ├── include │ │ │ │ └── brotli │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── shared_dictionary.h │ │ │ │ │ └── types.h │ │ │ └── lib │ │ │ │ ├── brotli.lib │ │ │ │ └── brotlid.lib │ │ └── x86 │ │ │ ├── include │ │ │ └── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ │ └── lib │ │ │ ├── brotli.lib │ │ │ └── brotlid.lib │ └── 14x │ │ ├── x64 │ │ ├── include │ │ │ └── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ ├── shared_dictionary.h │ │ │ │ └── types.h │ │ └── lib │ │ │ └── brotli.lib │ │ └── x86 │ │ ├── include │ │ └── brotli │ │ │ ├── decode.h │ │ │ ├── encode.h │ │ │ ├── port.h │ │ │ ├── shared_dictionary.h │ │ │ └── types.h │ │ └── lib │ │ └── brotli.lib ├── jemalloc │ └── 14x │ │ ├── x64 │ │ └── lib │ │ │ └── jemalloc.lib │ │ └── x86 │ │ └── lib │ │ └── jemalloc.lib ├── mimalloc │ └── 14x │ │ ├── x64 │ │ └── lib │ │ │ └── mimalloc.lib │ │ └── x86 │ │ └── lib │ │ └── mimalloc.lib ├── openssl │ ├── 100 │ │ ├── x64 │ │ │ ├── include │ │ │ │ └── openssl │ │ │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── asn1.h │ │ │ │ │ ├── asn1_mac.h │ │ │ │ │ ├── asn1err.h │ │ │ │ │ ├── asn1t.h │ │ │ │ │ ├── async.h │ │ │ │ │ ├── asyncerr.h │ │ │ │ │ ├── bio.h │ │ │ │ │ ├── bioerr.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bn.h │ │ │ │ │ ├── bnerr.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── buffererr.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast.h │ │ │ │ │ ├── cmac.h │ │ │ │ │ ├── cmp.h │ │ │ │ │ ├── cmp_util.h │ │ │ │ │ ├── cmperr.h │ │ │ │ │ ├── cms.h │ │ │ │ │ ├── cmserr.h │ │ │ │ │ ├── comp.h │ │ │ │ │ ├── comperr.h │ │ │ │ │ ├── conf.h │ │ │ │ │ ├── conf_api.h │ │ │ │ │ ├── conferr.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── conftypes.h │ │ │ │ │ ├── core.h │ │ │ │ │ ├── core_dispatch.h │ │ │ │ │ ├── core_names.h │ │ │ │ │ ├── core_object.h │ │ │ │ │ ├── crmf.h │ │ │ │ │ ├── crmferr.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── cryptoerr.h │ │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ │ ├── ct.h │ │ │ │ │ ├── cterr.h │ │ │ │ │ ├── decoder.h │ │ │ │ │ ├── decodererr.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dh.h │ │ │ │ │ ├── dherr.h │ │ │ │ │ ├── dsa.h │ │ │ │ │ ├── dsaerr.h │ │ │ │ │ ├── dtls1.h │ │ │ │ │ ├── e_os2.h │ │ │ │ │ ├── ebcdic.h │ │ │ │ │ ├── ec.h │ │ │ │ │ ├── ecdh.h │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ ├── ecerr.h │ │ │ │ │ ├── encoder.h │ │ │ │ │ ├── encodererr.h │ │ │ │ │ ├── engine.h │ │ │ │ │ ├── engineerr.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── ess.h │ │ │ │ │ ├── esserr.h │ │ │ │ │ ├── evp.h │ │ │ │ │ ├── evperr.h │ │ │ │ │ ├── fips_names.h │ │ │ │ │ ├── fipskey.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── http.h │ │ │ │ │ ├── httperr.h │ │ │ │ │ ├── idea.h │ │ │ │ │ ├── kdf.h │ │ │ │ │ ├── kdferr.h │ │ │ │ │ ├── lhash.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md2.h │ │ │ │ │ ├── md4.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mdc2.h │ │ │ │ │ ├── modes.h │ │ │ │ │ ├── obj_mac.h │ │ │ │ │ ├── objects.h │ │ │ │ │ ├── objectserr.h │ │ │ │ │ ├── ocsp.h │ │ │ │ │ ├── ocsperr.h │ │ │ │ │ ├── opensslconf.h │ │ │ │ │ ├── opensslv.h │ │ │ │ │ ├── ossl_typ.h │ │ │ │ │ ├── param_build.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── pem.h │ │ │ │ │ ├── pem2.h │ │ │ │ │ ├── pemerr.h │ │ │ │ │ ├── pkcs12.h │ │ │ │ │ ├── pkcs12err.h │ │ │ │ │ ├── pkcs7.h │ │ │ │ │ ├── pkcs7err.h │ │ │ │ │ ├── prov_ssl.h │ │ │ │ │ ├── proverr.h │ │ │ │ │ ├── provider.h │ │ │ │ │ ├── rand.h │ │ │ │ │ ├── randerr.h │ │ │ │ │ ├── rc2.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── rc5.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── rsa.h │ │ │ │ │ ├── rsaerr.h │ │ │ │ │ ├── safestack.h │ │ │ │ │ ├── seed.h │ │ │ │ │ ├── self_test.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── srp.h │ │ │ │ │ ├── srtp.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── ssl2.h │ │ │ │ │ ├── ssl3.h │ │ │ │ │ ├── sslerr.h │ │ │ │ │ ├── sslerr_legacy.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── store.h │ │ │ │ │ ├── storeerr.h │ │ │ │ │ ├── symhacks.h │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── ts.h │ │ │ │ │ ├── tserr.h │ │ │ │ │ ├── txt_db.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── uierr.h │ │ │ │ │ ├── whrlpool.h │ │ │ │ │ ├── x509.h │ │ │ │ │ ├── x509_vfy.h │ │ │ │ │ ├── x509err.h │ │ │ │ │ ├── x509v3.h │ │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ │ ├── libcrypto.lib │ │ │ │ └── libssl.lib │ │ └── x86 │ │ │ ├── include │ │ │ └── openssl │ │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ ├── libcrypto.lib │ │ │ └── libssl.lib │ └── 14x │ │ ├── x64 │ │ ├── include │ │ │ └── openssl │ │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cmp.h │ │ │ │ ├── cmp_util.h │ │ │ │ ├── cmperr.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── configuration.h │ │ │ │ ├── conftypes.h │ │ │ │ ├── core.h │ │ │ │ ├── core_dispatch.h │ │ │ │ ├── core_names.h │ │ │ │ ├── core_object.h │ │ │ │ ├── crmf.h │ │ │ │ ├── crmferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── cryptoerr_legacy.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── decoder.h │ │ │ │ ├── decodererr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── encoder.h │ │ │ │ ├── encodererr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── ess.h │ │ │ │ ├── esserr.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── fips_names.h │ │ │ │ ├── fipskey.h │ │ │ │ ├── hmac.h │ │ │ │ ├── http.h │ │ │ │ ├── httperr.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── macros.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── param_build.h │ │ │ │ ├── params.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── prov_ssl.h │ │ │ │ ├── proverr.h │ │ │ │ ├── provider.h │ │ │ │ ├── rand.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── self_test.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── sslerr_legacy.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── trace.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── types.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ └── lib │ │ │ ├── libcrypto.lib │ │ │ └── libssl.lib │ │ └── x86 │ │ ├── include │ │ └── openssl │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cmp.h │ │ │ ├── cmp_util.h │ │ │ ├── cmperr.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── configuration.h │ │ │ ├── conftypes.h │ │ │ ├── core.h │ │ │ ├── core_dispatch.h │ │ │ ├── core_names.h │ │ │ ├── core_object.h │ │ │ ├── crmf.h │ │ │ ├── crmferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── cryptoerr_legacy.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── decoder.h │ │ │ ├── decodererr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── encoder.h │ │ │ ├── encodererr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── ess.h │ │ │ ├── esserr.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── fips_names.h │ │ │ ├── fipskey.h │ │ │ ├── hmac.h │ │ │ ├── http.h │ │ │ ├── httperr.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── macros.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── param_build.h │ │ │ ├── params.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── prov_ssl.h │ │ │ ├── proverr.h │ │ │ ├── provider.h │ │ │ ├── rand.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── self_test.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── sslerr_legacy.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── trace.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── types.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ └── lib │ │ ├── libcrypto.lib │ │ └── libssl.lib └── zlib │ ├── 100 │ ├── x64 │ │ ├── include │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ └── zutil.h │ │ └── lib │ │ │ └── zlib.lib │ └── x86 │ │ ├── include │ │ ├── zconf.h │ │ ├── zlib.h │ │ └── zutil.h │ │ └── lib │ │ └── zlib.lib │ └── 14x │ ├── x64 │ ├── include │ │ ├── zconf.h │ │ ├── zlib.h │ │ └── zutil.h │ └── lib │ │ └── zlib.lib │ └── x86 │ ├── include │ ├── zconf.h │ ├── zlib.h │ └── zutil.h │ └── lib │ └── zlib.lib ├── Include └── HPSocket │ ├── HPSocket-SSL.h │ ├── HPSocket.h │ ├── HPSocket4C-SSL.h │ ├── HPSocket4C.h │ ├── HPTypeDef.h │ └── SocketInterface.h ├── LICENSE ├── Other Languages └── Authors.txt ├── Project ├── HPSocket-2010.sln ├── HPSocket-2015.sln ├── HPSocket-2017.sln ├── HPSocket-2019.sln ├── HPSocket-2022.sln ├── HPSocketDLL-2010 │ ├── HPSocketDLL.rc │ ├── HPSocketDLL.vcxproj │ ├── HPSocketDLL.vcxproj.filters │ ├── HPSocketDLL.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL-2015 │ ├── HPSocketDLL.rc │ ├── HPSocketDLL.vcxproj │ ├── HPSocketDLL.vcxproj.filters │ ├── HPSocketDLL.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL-2017 │ ├── HPSocketDLL.rc │ ├── HPSocketDLL.vcxproj │ ├── HPSocketDLL.vcxproj.filters │ ├── HPSocketDLL.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL-2019 │ ├── HPSocketDLL.rc │ ├── HPSocketDLL.vcxproj │ ├── HPSocketDLL.vcxproj.filters │ ├── HPSocketDLL.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL-2022 │ ├── HPSocketDLL.rc │ ├── HPSocketDLL.vcxproj │ ├── HPSocketDLL.vcxproj.filters │ ├── HPSocketDLL.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL4C-2010 │ ├── HPSocketDLL4C.rc │ ├── HPSocketDLL4C.vcxproj │ ├── HPSocketDLL4C.vcxproj.filters │ ├── HPSocketDLL4C.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL4C-2015 │ ├── HPSocketDLL4C.rc │ ├── HPSocketDLL4C.vcxproj │ ├── HPSocketDLL4C.vcxproj.filters │ ├── HPSocketDLL4C.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL4C-2017 │ ├── HPSocketDLL4C.rc │ ├── HPSocketDLL4C.vcxproj │ ├── HPSocketDLL4C.vcxproj.filters │ ├── HPSocketDLL4C.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL4C-2019 │ ├── HPSocketDLL4C.rc │ ├── HPSocketDLL4C.vcxproj │ ├── HPSocketDLL4C.vcxproj.filters │ ├── HPSocketDLL4C.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketDLL4C-2022 │ ├── HPSocketDLL4C.rc │ ├── HPSocketDLL4C.vcxproj │ ├── HPSocketDLL4C.vcxproj.filters │ ├── HPSocketDLL4C.vcxproj.user │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB-2010 │ ├── HPSocketLIB.rc │ ├── HPSocketLIB.vcxproj │ ├── HPSocketLIB.vcxproj.filters │ ├── HPSocketLIB.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB-2015 │ ├── HPSocketLIB.rc │ ├── HPSocketLIB.vcxproj │ ├── HPSocketLIB.vcxproj.filters │ ├── HPSocketLIB.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB-2017 │ ├── HPSocketLIB.rc │ ├── HPSocketLIB.vcxproj │ ├── HPSocketLIB.vcxproj.filters │ ├── HPSocketLIB.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB-2019 │ ├── HPSocketLIB.rc │ ├── HPSocketLIB.vcxproj │ ├── HPSocketLIB.vcxproj.filters │ ├── HPSocketLIB.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB-2022 │ ├── HPSocketLIB.rc │ ├── HPSocketLIB.vcxproj │ ├── HPSocketLIB.vcxproj.filters │ ├── HPSocketLIB.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB4C-2010 │ ├── HPSocketLIB4C.rc │ ├── HPSocketLIB4C.vcxproj │ ├── HPSocketLIB4C.vcxproj.filters │ ├── HPSocketLIB4C.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB4C-2015 │ ├── HPSocketLIB4C.rc │ ├── HPSocketLIB4C.vcxproj │ ├── HPSocketLIB4C.vcxproj.filters │ ├── HPSocketLIB4C.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB4C-2017 │ ├── HPSocketLIB4C.rc │ ├── HPSocketLIB4C.vcxproj │ ├── HPSocketLIB4C.vcxproj.filters │ ├── HPSocketLIB4C.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── HPSocketLIB4C-2019 │ ├── HPSocketLIB4C.rc │ ├── HPSocketLIB4C.vcxproj │ ├── HPSocketLIB4C.vcxproj.filters │ ├── HPSocketLIB4C.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h └── HPSocketLIB4C-2022 │ ├── HPSocketLIB4C.rc │ ├── HPSocketLIB4C.vcxproj │ ├── HPSocketLIB4C.vcxproj.filters │ ├── HPSocketLIB4C.vcxproj.user │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── README.md ├── Script ├── build-all.bat ├── build-demos.bat ├── build-libs.bat ├── clean-all.bat ├── clean.bat └── copy.bat └── Src ├── ArqHelper.cpp ├── ArqHelper.h ├── Common ├── BufferPool.cpp ├── BufferPool.h ├── BufferPtr.cpp ├── BufferPtr.h ├── CriticalSection.cpp ├── CriticalSection.h ├── Event.cpp ├── Event.h ├── FuncHelper.cpp ├── FuncHelper.h ├── GeneralHelper.cpp ├── GeneralHelper.h ├── PrivateHeap.cpp ├── PrivateHeap.h ├── RWLock.cpp ├── RWLock.h ├── RingBuffer.cpp ├── RingBuffer.h ├── SE.h ├── STLHelper.h ├── Semaphore.cpp ├── Semaphore.h ├── Singleton.h ├── SysHelper.cpp ├── SysHelper.h ├── Thread.cpp ├── Thread.h ├── WaitFor.cpp ├── WaitFor.h ├── Win32Helper.h ├── debug │ ├── win32_crtdbg.cpp │ └── win32_crtdbg.h ├── http │ ├── Readme.txt │ ├── llhttp.h │ ├── llhttp_api.c │ ├── llhttp_internal.c │ ├── llhttp_support.c │ ├── llhttp_url.c │ └── llhttp_url.h └── kcp │ ├── Readme.txt │ ├── ikcp.c │ └── ikcp.h ├── HPSocket-SSL.cpp ├── HPSocket.cpp ├── HPSocket4C-SSL.cpp ├── HPSocket4C.cpp ├── HPThreadPool.cpp ├── HPThreadPool.h ├── HttpAgent.cpp ├── HttpAgent.h ├── HttpClient.cpp ├── HttpClient.h ├── HttpCookie.cpp ├── HttpCookie.h ├── HttpHelper.cpp ├── HttpHelper.h ├── HttpServer.cpp ├── HttpServer.h ├── InternalDef.h ├── MiscHelper.cpp ├── MiscHelper.h ├── SSLAgent.cpp ├── SSLAgent.h ├── SSLClient.cpp ├── SSLClient.h ├── SSLHelper.cpp ├── SSLHelper.h ├── SSLServer.cpp ├── SSLServer.h ├── SocketHelper.cpp ├── SocketHelper.h ├── SocketObject4C.h ├── TcpAgent.cpp ├── TcpAgent.h ├── TcpClient.cpp ├── TcpClient.h ├── TcpPackAgent.cpp ├── TcpPackAgent.h ├── TcpPackClient.cpp ├── TcpPackClient.h ├── TcpPackServer.cpp ├── TcpPackServer.h ├── TcpPullAgent.cpp ├── TcpPullAgent.h ├── TcpPullClient.cpp ├── TcpPullClient.h ├── TcpPullServer.cpp ├── TcpPullServer.h ├── TcpServer.cpp ├── TcpServer.h ├── UdpArqClient.cpp ├── UdpArqClient.h ├── UdpArqServer.cpp ├── UdpArqServer.h ├── UdpCast.cpp ├── UdpCast.h ├── UdpClient.cpp ├── UdpClient.h ├── UdpNode.cpp ├── UdpNode.h ├── UdpServer.cpp └── UdpServer.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/ARQ Sequence Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/ARQ Sequence Diagram.jpg -------------------------------------------------------------------------------- /Doc/Basic Component - mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/Basic Component - mini.jpg -------------------------------------------------------------------------------- /Doc/Example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/Example.c -------------------------------------------------------------------------------- /Doc/Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/Example.cpp -------------------------------------------------------------------------------- /Doc/HP-Socket ARQ Class Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket ARQ Class Diagram.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket Class Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket Class Diagram.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket Class Diagram.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket Class Diagram.uml -------------------------------------------------------------------------------- /Doc/HP-Socket Development Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket Development Guide.pdf -------------------------------------------------------------------------------- /Doc/HP-Socket HTTP Class Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket HTTP Class Diagram.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket Logo.png -------------------------------------------------------------------------------- /Doc/HP-Socket SSL Class Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket SSL Class Diagram.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket Sequence Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket Sequence Diagram.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket-Agent-Demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket-Agent-Demo.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket-Agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket-Agent.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket-Client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket-Client.jpg -------------------------------------------------------------------------------- /Doc/HP-Socket-Server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HP-Socket-Server.jpg -------------------------------------------------------------------------------- /Doc/HTTP Component - mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/HTTP Component - mini.jpg -------------------------------------------------------------------------------- /Doc/PUSH-PULL-PACK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/PUSH-PULL-PACK.jpg -------------------------------------------------------------------------------- /Doc/SSL Component - mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/SSL Component - mini.jpg -------------------------------------------------------------------------------- /Doc/UdpNode Sequence Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Doc/UdpNode Sequence Diagram.jpg -------------------------------------------------------------------------------- /DotNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/DotNet/README.md -------------------------------------------------------------------------------- /DotNet/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/DotNet/README_zh.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/Change-APIs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/Change-APIs.txt -------------------------------------------------------------------------------- /Linux/Change-Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/Change-Log.txt -------------------------------------------------------------------------------- /Linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/LICENSE -------------------------------------------------------------------------------- /Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/README.md -------------------------------------------------------------------------------- /Linux/demo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/Android.mk -------------------------------------------------------------------------------- /Linux/demo/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/Application.mk -------------------------------------------------------------------------------- /Linux/demo/build-android-ndk-demo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/build-android-ndk-demo.bat -------------------------------------------------------------------------------- /Linux/demo/build-android-ndk-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/build-android-ndk-demo.sh -------------------------------------------------------------------------------- /Linux/demo/global/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/global/Crypto.cpp -------------------------------------------------------------------------------- /Linux/demo/global/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/global/Crypto.h -------------------------------------------------------------------------------- /Linux/demo/global/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/global/helper.cpp -------------------------------------------------------------------------------- /Linux/demo/global/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/global/helper.h -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca2.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca2.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca2.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ca2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ca2.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client.csr -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client2.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client2.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client2.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client2.csr -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client2.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/client2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/client2.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server.csr -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server2.cer -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server2.crt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server2.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server2.csr -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server2.key -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/server2.pem -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ssl-cert-ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ssl-cert-ext.txt -------------------------------------------------------------------------------- /Linux/demo/ssl-cert/ssl-cert-ext2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/ssl-cert/ssl-cert-ext2.txt -------------------------------------------------------------------------------- /Linux/demo/testecho-arq-pfm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-arq-pfm/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-arq/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-arq/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-arq/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-arq/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-arq/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-arq/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-arq/testecho-arq.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-arq/testecho-arq.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-http-4c/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http-4c/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-http-4c/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http-4c/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-http/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-http/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-http/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-http/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-http/testecho-http.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-http/testecho-http.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/agent/agent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/agent/agent.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-lib/testecho-lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-lib/testecho-lib.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-pack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pack/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-pack/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pack/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pack/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pack/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pack/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pack/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pack/testecho-pack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pack/testecho-pack.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/agent/agent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/agent/agent.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pfm/testecho-pfm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pfm/testecho-pfm.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-pull/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pull/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-pull/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pull/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pull/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pull/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pull/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pull/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-pull/testecho-pull.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-pull/testecho-pull.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl-pack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl-pack/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl-pfm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl-pfm/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl-pfm/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl-pfm/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl-pull/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl-pull/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/agent/agent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/agent/agent.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-ssl/testecho-ssl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-ssl/testecho-ssl.sln -------------------------------------------------------------------------------- /Linux/demo/testecho-udp-pfm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp-pfm/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/cast/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/cast/cast.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/cast/cast.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/cast/cast.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/node/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/node/node.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/node/node.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/node/node.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho-udp/testecho-udp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho-udp/testecho-udp.sln -------------------------------------------------------------------------------- /Linux/demo/testecho/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/Android.mk -------------------------------------------------------------------------------- /Linux/demo/testecho/agent/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/agent/agent.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho/agent/agent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/agent/agent.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/client/client.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho/client/client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/client/client.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/server/server.cpp -------------------------------------------------------------------------------- /Linux/demo/testecho/server/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/server/server.vcxproj -------------------------------------------------------------------------------- /Linux/demo/testecho/testecho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/demo/testecho/testecho.sln -------------------------------------------------------------------------------- /Linux/dependent/arm/include/brotli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/brotli/decode.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/brotli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/brotli/encode.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/brotli/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/brotli/port.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/brotli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/brotli/types.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/aes.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/asn1.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/async.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/bio.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/bn.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/bnerr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/cast.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/cmac.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/cmp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/cms.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/comp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/conf.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/core.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/crmf.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ct.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/cterr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/des.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/dh.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/dherr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/dsa.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ec.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ecerr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/err.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ess.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/evp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/hmac.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/http.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/idea.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/kdf.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/lhash.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/md2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/md4.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/md5.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/mdc2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/modes.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ocsp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/pem.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/pem2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/rand.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/rc2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/rc4.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/rc5.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/rsa.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/seed.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/sha.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/srp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/srtp.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ssl.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ssl2.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/stack.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/store.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/tls1.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/trace.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ts.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/tserr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/types.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/ui.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/uierr.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/openssl/x509.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/zconf.h -------------------------------------------------------------------------------- /Linux/dependent/arm/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/include/zlib.h -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libbrotli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libbrotli.a -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libcrypto.a -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libjemalloc_pic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libjemalloc_pic.a -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libmimalloc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libmimalloc.a -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libssl.a -------------------------------------------------------------------------------- /Linux/dependent/arm/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm/lib/libz.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/brotli/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/brotli/port.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/aes.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/bio.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/bn.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/cmp.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/cms.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ct.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/des.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/dh.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/dsa.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ec.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/err.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ess.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/evp.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/kdf.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/md2.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/md4.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/md5.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/pem.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/rc2.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/rc4.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/rc5.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/rsa.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/sha.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/srp.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ssl.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ts.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/openssl/ui.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/zconf.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/include/zlib.h -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libbrotli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libbrotli.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libcrypto.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libjemalloc_pic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libjemalloc_pic.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libmimalloc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libmimalloc.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libssl.a -------------------------------------------------------------------------------- /Linux/dependent/arm64/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/arm64/lib/libz.a -------------------------------------------------------------------------------- /Linux/dependent/x64/include/brotli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/brotli/decode.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/brotli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/brotli/encode.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/brotli/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/brotli/port.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/brotli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/brotli/types.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/aes.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/asn1.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/async.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/bio.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/bn.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/bnerr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/cast.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/cmac.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/cmp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/cms.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/comp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/conf.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/core.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/crmf.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ct.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/cterr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/des.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/dh.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/dherr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/dsa.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ec.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ecerr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/err.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ess.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/evp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/hmac.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/http.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/idea.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/kdf.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/lhash.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/md2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/md4.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/md5.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/mdc2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/modes.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ocsp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/pem.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/pem2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/rand.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/rc2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/rc4.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/rc5.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/rsa.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/seed.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/sha.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/srp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/srtp.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ssl.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ssl2.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/stack.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/store.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/tls1.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/trace.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ts.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/tserr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/types.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/ui.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/uierr.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/openssl/x509.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/zconf.h -------------------------------------------------------------------------------- /Linux/dependent/x64/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/include/zlib.h -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libbrotli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libbrotli.a -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libcrypto.a -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libjemalloc_pic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libjemalloc_pic.a -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libmimalloc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libmimalloc.a -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libssl.a -------------------------------------------------------------------------------- /Linux/dependent/x64/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x64/lib/libz.a -------------------------------------------------------------------------------- /Linux/dependent/x86/include/brotli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/brotli/decode.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/brotli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/brotli/encode.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/brotli/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/brotli/port.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/brotli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/brotli/types.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/aes.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/asn1.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/async.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/bio.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/bn.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/bnerr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/cast.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/cmac.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/cmp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/cms.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/comp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/conf.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/core.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/crmf.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ct.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/cterr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/des.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/dh.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/dherr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/dsa.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ec.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ecerr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/err.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ess.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/evp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/hmac.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/http.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/idea.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/kdf.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/lhash.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/md2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/md4.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/md5.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/mdc2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/modes.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ocsp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/pem.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/pem2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/rand.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/rc2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/rc4.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/rc5.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/rsa.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/seed.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/sha.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/srp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/srtp.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ssl.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ssl2.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/stack.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/store.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/tls1.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/trace.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ts.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/tserr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/types.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/ui.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/uierr.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/openssl/x509.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/zconf.h -------------------------------------------------------------------------------- /Linux/dependent/x86/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/include/zlib.h -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libbrotli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libbrotli.a -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libcrypto.a -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libjemalloc_pic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libjemalloc_pic.a -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libmimalloc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libmimalloc.a -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libssl.a -------------------------------------------------------------------------------- /Linux/dependent/x86/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/dependent/x86/lib/libz.a -------------------------------------------------------------------------------- /Linux/include/hpsocket/GlobalDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/GlobalDef.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/GlobalErrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/GlobalErrno.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/HPSocket-SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/HPSocket-SSL.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/HPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/HPSocket.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/HPSocket4C-SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/HPSocket4C-SSL.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/HPSocket4C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/HPSocket4C.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/HPTypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/HPTypeDef.h -------------------------------------------------------------------------------- /Linux/include/hpsocket/SocketInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/include/hpsocket/SocketInterface.h -------------------------------------------------------------------------------- /Linux/project/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/project/Version.props -------------------------------------------------------------------------------- /Linux/project/android-ndk/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/project/android-ndk/jni/Android.mk -------------------------------------------------------------------------------- /Linux/project/hpsocket-2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/project/hpsocket-2017.sln -------------------------------------------------------------------------------- /Linux/project/hpsocket-2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/project/hpsocket-2019.sln -------------------------------------------------------------------------------- /Linux/project/hpsocket-2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/project/hpsocket-2022.sln -------------------------------------------------------------------------------- /Linux/script/build-android-ndk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/build-android-ndk.bat -------------------------------------------------------------------------------- /Linux/script/build-android-ndk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/build-android-ndk.sh -------------------------------------------------------------------------------- /Linux/script/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/clean.sh -------------------------------------------------------------------------------- /Linux/script/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/compile.sh -------------------------------------------------------------------------------- /Linux/script/cp-dependent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/cp-dependent.sh -------------------------------------------------------------------------------- /Linux/script/cp-include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/cp-include.sh -------------------------------------------------------------------------------- /Linux/script/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/env.sh -------------------------------------------------------------------------------- /Linux/script/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/install.sh -------------------------------------------------------------------------------- /Linux/script/ms-build-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/ms-build-all.bat -------------------------------------------------------------------------------- /Linux/script/ms-build-demos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/ms-build-demos.bat -------------------------------------------------------------------------------- /Linux/script/ms-build-libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/ms-build-libs.bat -------------------------------------------------------------------------------- /Linux/script/ms-clean-all.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call %~dp0ms-clean.bat /a 4 | 5 | -------------------------------------------------------------------------------- /Linux/script/ms-clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/ms-clean.bat -------------------------------------------------------------------------------- /Linux/script/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/post-link.sh -------------------------------------------------------------------------------- /Linux/script/pre-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/script/pre-link.sh -------------------------------------------------------------------------------- /Linux/src/ArqHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/ArqHelper.cpp -------------------------------------------------------------------------------- /Linux/src/ArqHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/ArqHelper.h -------------------------------------------------------------------------------- /Linux/src/HPSocket-SSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPSocket-SSL.cpp -------------------------------------------------------------------------------- /Linux/src/HPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPSocket.cpp -------------------------------------------------------------------------------- /Linux/src/HPSocket4C-SSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPSocket4C-SSL.cpp -------------------------------------------------------------------------------- /Linux/src/HPSocket4C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPSocket4C.cpp -------------------------------------------------------------------------------- /Linux/src/HPThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPThreadPool.cpp -------------------------------------------------------------------------------- /Linux/src/HPThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HPThreadPool.h -------------------------------------------------------------------------------- /Linux/src/HttpAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpAgent.cpp -------------------------------------------------------------------------------- /Linux/src/HttpAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpAgent.h -------------------------------------------------------------------------------- /Linux/src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpClient.cpp -------------------------------------------------------------------------------- /Linux/src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpClient.h -------------------------------------------------------------------------------- /Linux/src/HttpCookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpCookie.cpp -------------------------------------------------------------------------------- /Linux/src/HttpCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpCookie.h -------------------------------------------------------------------------------- /Linux/src/HttpHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpHelper.cpp -------------------------------------------------------------------------------- /Linux/src/HttpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpHelper.h -------------------------------------------------------------------------------- /Linux/src/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpServer.cpp -------------------------------------------------------------------------------- /Linux/src/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/HttpServer.h -------------------------------------------------------------------------------- /Linux/src/InternalDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/InternalDef.h -------------------------------------------------------------------------------- /Linux/src/MiscHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/MiscHelper.cpp -------------------------------------------------------------------------------- /Linux/src/MiscHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/MiscHelper.h -------------------------------------------------------------------------------- /Linux/src/SSLAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLAgent.cpp -------------------------------------------------------------------------------- /Linux/src/SSLAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLAgent.h -------------------------------------------------------------------------------- /Linux/src/SSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLClient.cpp -------------------------------------------------------------------------------- /Linux/src/SSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLClient.h -------------------------------------------------------------------------------- /Linux/src/SSLHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLHelper.cpp -------------------------------------------------------------------------------- /Linux/src/SSLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLHelper.h -------------------------------------------------------------------------------- /Linux/src/SSLServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLServer.cpp -------------------------------------------------------------------------------- /Linux/src/SSLServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SSLServer.h -------------------------------------------------------------------------------- /Linux/src/SocketHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SocketHelper.cpp -------------------------------------------------------------------------------- /Linux/src/SocketHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SocketHelper.h -------------------------------------------------------------------------------- /Linux/src/SocketObject4C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/SocketObject4C.h -------------------------------------------------------------------------------- /Linux/src/TcpAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpAgent.cpp -------------------------------------------------------------------------------- /Linux/src/TcpAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpAgent.h -------------------------------------------------------------------------------- /Linux/src/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpClient.cpp -------------------------------------------------------------------------------- /Linux/src/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpClient.h -------------------------------------------------------------------------------- /Linux/src/TcpPackAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackAgent.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPackAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackAgent.h -------------------------------------------------------------------------------- /Linux/src/TcpPackClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackClient.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPackClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackClient.h -------------------------------------------------------------------------------- /Linux/src/TcpPackServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackServer.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPackServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPackServer.h -------------------------------------------------------------------------------- /Linux/src/TcpPullAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullAgent.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPullAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullAgent.h -------------------------------------------------------------------------------- /Linux/src/TcpPullClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullClient.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPullClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullClient.h -------------------------------------------------------------------------------- /Linux/src/TcpPullServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullServer.cpp -------------------------------------------------------------------------------- /Linux/src/TcpPullServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpPullServer.h -------------------------------------------------------------------------------- /Linux/src/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpServer.cpp -------------------------------------------------------------------------------- /Linux/src/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/TcpServer.h -------------------------------------------------------------------------------- /Linux/src/UdpArqClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpArqClient.cpp -------------------------------------------------------------------------------- /Linux/src/UdpArqClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpArqClient.h -------------------------------------------------------------------------------- /Linux/src/UdpArqServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpArqServer.cpp -------------------------------------------------------------------------------- /Linux/src/UdpArqServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpArqServer.h -------------------------------------------------------------------------------- /Linux/src/UdpCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpCast.cpp -------------------------------------------------------------------------------- /Linux/src/UdpCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpCast.h -------------------------------------------------------------------------------- /Linux/src/UdpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpClient.cpp -------------------------------------------------------------------------------- /Linux/src/UdpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpClient.h -------------------------------------------------------------------------------- /Linux/src/UdpNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpNode.cpp -------------------------------------------------------------------------------- /Linux/src/UdpNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpNode.h -------------------------------------------------------------------------------- /Linux/src/UdpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpServer.cpp -------------------------------------------------------------------------------- /Linux/src/UdpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/UdpServer.h -------------------------------------------------------------------------------- /Linux/src/common/BufferPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/BufferPool.cpp -------------------------------------------------------------------------------- /Linux/src/common/BufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/BufferPool.h -------------------------------------------------------------------------------- /Linux/src/common/BufferPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/BufferPtr.h -------------------------------------------------------------------------------- /Linux/src/common/CriSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/CriSec.h -------------------------------------------------------------------------------- /Linux/src/common/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Event.cpp -------------------------------------------------------------------------------- /Linux/src/common/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Event.h -------------------------------------------------------------------------------- /Linux/src/common/FileHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/FileHelper.cpp -------------------------------------------------------------------------------- /Linux/src/common/FileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/FileHelper.h -------------------------------------------------------------------------------- /Linux/src/common/FuncHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/FuncHelper.cpp -------------------------------------------------------------------------------- /Linux/src/common/FuncHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/FuncHelper.h -------------------------------------------------------------------------------- /Linux/src/common/GeneralHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/GeneralHelper.h -------------------------------------------------------------------------------- /Linux/src/common/IODispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/IODispatcher.cpp -------------------------------------------------------------------------------- /Linux/src/common/IODispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/IODispatcher.h -------------------------------------------------------------------------------- /Linux/src/common/PollHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/PollHelper.cpp -------------------------------------------------------------------------------- /Linux/src/common/PollHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/PollHelper.h -------------------------------------------------------------------------------- /Linux/src/common/PrivateHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/PrivateHeap.h -------------------------------------------------------------------------------- /Linux/src/common/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/RWLock.cpp -------------------------------------------------------------------------------- /Linux/src/common/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/RWLock.h -------------------------------------------------------------------------------- /Linux/src/common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/RingBuffer.h -------------------------------------------------------------------------------- /Linux/src/common/STLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/STLHelper.h -------------------------------------------------------------------------------- /Linux/src/common/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Semaphore.h -------------------------------------------------------------------------------- /Linux/src/common/SignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/SignalHandler.h -------------------------------------------------------------------------------- /Linux/src/common/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Singleton.h -------------------------------------------------------------------------------- /Linux/src/common/StringT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/StringT.h -------------------------------------------------------------------------------- /Linux/src/common/SysHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/SysHelper.cpp -------------------------------------------------------------------------------- /Linux/src/common/SysHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/SysHelper.h -------------------------------------------------------------------------------- /Linux/src/common/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Thread.cpp -------------------------------------------------------------------------------- /Linux/src/common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/Thread.h -------------------------------------------------------------------------------- /Linux/src/common/http/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/Readme.txt -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp.h -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp_api.c -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp_internal.c -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp_support.c -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp_url.c -------------------------------------------------------------------------------- /Linux/src/common/http/llhttp_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/http/llhttp_url.h -------------------------------------------------------------------------------- /Linux/src/common/kcp/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/kcp/Readme.txt -------------------------------------------------------------------------------- /Linux/src/common/kcp/ikcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/kcp/ikcp.c -------------------------------------------------------------------------------- /Linux/src/common/kcp/ikcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Linux/src/common/kcp/ikcp.h -------------------------------------------------------------------------------- /MacOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/MacOS/README.md -------------------------------------------------------------------------------- /MacOS/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/MacOS/README_zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/README_zh.md -------------------------------------------------------------------------------- /Windows/Change-APIs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Change-APIs.txt -------------------------------------------------------------------------------- /Windows/Change-Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Change-Log.txt -------------------------------------------------------------------------------- /Windows/Demo/Global/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/Global/crypto.cpp -------------------------------------------------------------------------------- /Windows/Demo/Global/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/Global/crypto.h -------------------------------------------------------------------------------- /Windows/Demo/Global/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/Global/helper.cpp -------------------------------------------------------------------------------- /Windows/Demo/Global/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/Global/helper.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/HttpProxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/HttpProxy.sln -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/Server.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/ServerDlg.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/resource.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-1/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/Server.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/ServerDlg.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/resource.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/HttpProxy/Server-2/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/HttpProxy/Server-2/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/ClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/ClientDlg.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Client/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/ServerDlg.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/Server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/Server/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-4C/TestEcho-4C.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-4C/TestEcho-4C.sln -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-ARQ/TestEcho-ARQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-ARQ/TestEcho-ARQ.sln -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Http/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Http/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-PFM/TestEcho-PFM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-PFM/TestEcho-PFM.sln -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pack/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pack/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-Pull/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-Pull/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-SSL/TestEcho-SSL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-SSL/TestEcho-SSL.sln -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho-UDP/TestEcho-UDP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho-UDP/TestEcho-UDP.sln -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/Client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/Client.vcxproj -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/ClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/ClientDlg.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/ClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/ClientDlg.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/res/Client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/res/Client.ico -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/res/Client.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/res/Client.rc2 -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Client/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/Server.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/Server.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/Server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/Server.rc -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/Server.vcxproj -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/ServerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/ServerDlg.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/ServerDlg.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/res/Server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/res/Server.ico -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/res/Server.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/res/Server.rc2 -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/Server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/Server/targetver.h -------------------------------------------------------------------------------- /Windows/Demo/TestEcho/TestEcho.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestEcho/TestEcho.sln -------------------------------------------------------------------------------- /Windows/Demo/TestUDPCast/Member/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPCast/Member/Client.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestUDPCast/Member/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPCast/Member/Client.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPCast/Member/Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPCast/Member/Client.rc -------------------------------------------------------------------------------- /Windows/Demo/TestUDPCast/Member/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPCast/Member/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPCast/TestUDPCast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPCast/TestUDPCast.sln -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/Node.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/Node.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/Node.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/Node.rc -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/NodeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/NodeDlg.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/ReadMe.txt -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/resource.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/stdafx.cpp -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/Node/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/Node/stdafx.h -------------------------------------------------------------------------------- /Windows/Demo/TestUDPNode/TestUDPNode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/TestUDPNode/TestUDPNode.sln -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca2.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca2.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca2.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ca2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ca2.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client.csr -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client2.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client2.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client2.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client2.csr -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client2.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/client2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/client2.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server.csr -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server2.cer -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server2.crt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server2.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server2.csr -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server2.key -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/server2.pem -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ssl-cert-ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ssl-cert-ext.txt -------------------------------------------------------------------------------- /Windows/Demo/ssl-cert/ssl-cert-ext2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Demo/ssl-cert/ssl-cert-ext2.txt -------------------------------------------------------------------------------- /Windows/Include/HPSocket/HPSocket-SSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Include/HPSocket/HPSocket-SSL.h -------------------------------------------------------------------------------- /Windows/Include/HPSocket/HPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Include/HPSocket/HPSocket.h -------------------------------------------------------------------------------- /Windows/Include/HPSocket/HPSocket4C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Include/HPSocket/HPSocket4C.h -------------------------------------------------------------------------------- /Windows/Include/HPSocket/HPTypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Include/HPSocket/HPTypeDef.h -------------------------------------------------------------------------------- /Windows/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/LICENSE -------------------------------------------------------------------------------- /Windows/Other Languages/Authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Other Languages/Authors.txt -------------------------------------------------------------------------------- /Windows/Project/HPSocket-2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Project/HPSocket-2010.sln -------------------------------------------------------------------------------- /Windows/Project/HPSocket-2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Project/HPSocket-2015.sln -------------------------------------------------------------------------------- /Windows/Project/HPSocket-2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Project/HPSocket-2017.sln -------------------------------------------------------------------------------- /Windows/Project/HPSocket-2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Project/HPSocket-2019.sln -------------------------------------------------------------------------------- /Windows/Project/HPSocket-2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Project/HPSocket-2022.sln -------------------------------------------------------------------------------- /Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/README.md -------------------------------------------------------------------------------- /Windows/Script/build-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Script/build-all.bat -------------------------------------------------------------------------------- /Windows/Script/build-demos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Script/build-demos.bat -------------------------------------------------------------------------------- /Windows/Script/build-libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Script/build-libs.bat -------------------------------------------------------------------------------- /Windows/Script/clean-all.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call %~dp0clean.bat /a 4 | 5 | -------------------------------------------------------------------------------- /Windows/Script/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Script/clean.bat -------------------------------------------------------------------------------- /Windows/Script/copy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Script/copy.bat -------------------------------------------------------------------------------- /Windows/Src/ArqHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/ArqHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/ArqHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/ArqHelper.h -------------------------------------------------------------------------------- /Windows/Src/Common/BufferPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/BufferPool.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/BufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/BufferPool.h -------------------------------------------------------------------------------- /Windows/Src/Common/BufferPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/BufferPtr.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/BufferPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/BufferPtr.h -------------------------------------------------------------------------------- /Windows/Src/Common/CriticalSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/CriticalSection.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/CriticalSection.h -------------------------------------------------------------------------------- /Windows/Src/Common/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Event.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Event.h -------------------------------------------------------------------------------- /Windows/Src/Common/FuncHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/FuncHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/FuncHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/FuncHelper.h -------------------------------------------------------------------------------- /Windows/Src/Common/GeneralHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/GeneralHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/GeneralHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/GeneralHelper.h -------------------------------------------------------------------------------- /Windows/Src/Common/PrivateHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/PrivateHeap.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/PrivateHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/PrivateHeap.h -------------------------------------------------------------------------------- /Windows/Src/Common/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/RWLock.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/RWLock.h -------------------------------------------------------------------------------- /Windows/Src/Common/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/RingBuffer.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/RingBuffer.h -------------------------------------------------------------------------------- /Windows/Src/Common/SE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/SE.h -------------------------------------------------------------------------------- /Windows/Src/Common/STLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/STLHelper.h -------------------------------------------------------------------------------- /Windows/Src/Common/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Semaphore.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Semaphore.h -------------------------------------------------------------------------------- /Windows/Src/Common/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Singleton.h -------------------------------------------------------------------------------- /Windows/Src/Common/SysHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/SysHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/SysHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/SysHelper.h -------------------------------------------------------------------------------- /Windows/Src/Common/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Thread.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Thread.h -------------------------------------------------------------------------------- /Windows/Src/Common/WaitFor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/WaitFor.cpp -------------------------------------------------------------------------------- /Windows/Src/Common/WaitFor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/WaitFor.h -------------------------------------------------------------------------------- /Windows/Src/Common/Win32Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/Win32Helper.h -------------------------------------------------------------------------------- /Windows/Src/Common/debug/win32_crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/debug/win32_crtdbg.h -------------------------------------------------------------------------------- /Windows/Src/Common/http/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/Readme.txt -------------------------------------------------------------------------------- /Windows/Src/Common/http/llhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/llhttp.h -------------------------------------------------------------------------------- /Windows/Src/Common/http/llhttp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/llhttp_api.c -------------------------------------------------------------------------------- /Windows/Src/Common/http/llhttp_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/llhttp_support.c -------------------------------------------------------------------------------- /Windows/Src/Common/http/llhttp_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/llhttp_url.c -------------------------------------------------------------------------------- /Windows/Src/Common/http/llhttp_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/http/llhttp_url.h -------------------------------------------------------------------------------- /Windows/Src/Common/kcp/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/kcp/Readme.txt -------------------------------------------------------------------------------- /Windows/Src/Common/kcp/ikcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/kcp/ikcp.c -------------------------------------------------------------------------------- /Windows/Src/Common/kcp/ikcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/Common/kcp/ikcp.h -------------------------------------------------------------------------------- /Windows/Src/HPSocket-SSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPSocket-SSL.cpp -------------------------------------------------------------------------------- /Windows/Src/HPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPSocket.cpp -------------------------------------------------------------------------------- /Windows/Src/HPSocket4C-SSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPSocket4C-SSL.cpp -------------------------------------------------------------------------------- /Windows/Src/HPSocket4C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPSocket4C.cpp -------------------------------------------------------------------------------- /Windows/Src/HPThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPThreadPool.cpp -------------------------------------------------------------------------------- /Windows/Src/HPThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HPThreadPool.h -------------------------------------------------------------------------------- /Windows/Src/HttpAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpAgent.cpp -------------------------------------------------------------------------------- /Windows/Src/HttpAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpAgent.h -------------------------------------------------------------------------------- /Windows/Src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpClient.cpp -------------------------------------------------------------------------------- /Windows/Src/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpClient.h -------------------------------------------------------------------------------- /Windows/Src/HttpCookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpCookie.cpp -------------------------------------------------------------------------------- /Windows/Src/HttpCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpCookie.h -------------------------------------------------------------------------------- /Windows/Src/HttpHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/HttpHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpHelper.h -------------------------------------------------------------------------------- /Windows/Src/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpServer.cpp -------------------------------------------------------------------------------- /Windows/Src/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/HttpServer.h -------------------------------------------------------------------------------- /Windows/Src/InternalDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/InternalDef.h -------------------------------------------------------------------------------- /Windows/Src/MiscHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/MiscHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/MiscHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/MiscHelper.h -------------------------------------------------------------------------------- /Windows/Src/SSLAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLAgent.cpp -------------------------------------------------------------------------------- /Windows/Src/SSLAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLAgent.h -------------------------------------------------------------------------------- /Windows/Src/SSLClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLClient.cpp -------------------------------------------------------------------------------- /Windows/Src/SSLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLClient.h -------------------------------------------------------------------------------- /Windows/Src/SSLHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/SSLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLHelper.h -------------------------------------------------------------------------------- /Windows/Src/SSLServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLServer.cpp -------------------------------------------------------------------------------- /Windows/Src/SSLServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SSLServer.h -------------------------------------------------------------------------------- /Windows/Src/SocketHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SocketHelper.cpp -------------------------------------------------------------------------------- /Windows/Src/SocketHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SocketHelper.h -------------------------------------------------------------------------------- /Windows/Src/SocketObject4C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/SocketObject4C.h -------------------------------------------------------------------------------- /Windows/Src/TcpAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpAgent.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpAgent.h -------------------------------------------------------------------------------- /Windows/Src/TcpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpClient.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpClient.h -------------------------------------------------------------------------------- /Windows/Src/TcpPackAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackAgent.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPackAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackAgent.h -------------------------------------------------------------------------------- /Windows/Src/TcpPackClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackClient.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPackClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackClient.h -------------------------------------------------------------------------------- /Windows/Src/TcpPackServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackServer.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPackServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPackServer.h -------------------------------------------------------------------------------- /Windows/Src/TcpPullAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullAgent.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPullAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullAgent.h -------------------------------------------------------------------------------- /Windows/Src/TcpPullClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullClient.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPullClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullClient.h -------------------------------------------------------------------------------- /Windows/Src/TcpPullServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullServer.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpPullServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpPullServer.h -------------------------------------------------------------------------------- /Windows/Src/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpServer.cpp -------------------------------------------------------------------------------- /Windows/Src/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/TcpServer.h -------------------------------------------------------------------------------- /Windows/Src/UdpArqClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpArqClient.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpArqClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpArqClient.h -------------------------------------------------------------------------------- /Windows/Src/UdpArqServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpArqServer.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpArqServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpArqServer.h -------------------------------------------------------------------------------- /Windows/Src/UdpCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpCast.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpCast.h -------------------------------------------------------------------------------- /Windows/Src/UdpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpClient.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpClient.h -------------------------------------------------------------------------------- /Windows/Src/UdpNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpNode.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpNode.h -------------------------------------------------------------------------------- /Windows/Src/UdpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpServer.cpp -------------------------------------------------------------------------------- /Windows/Src/UdpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldcsaa/HP-Socket/HEAD/Windows/Src/UdpServer.h --------------------------------------------------------------------------------