wqweto / VbAsyncSocket

Sockets with pure VB6 impl of TLS encryption
MIT License
166 stars 33 forks source link

Https not supported #2

Closed msnv closed 4 years ago

msnv commented 4 years ago

Hi, Why HTTPs protocol is not supported in download class? best reguard

wqweto commented 4 years ago

The https protocol is not supported in cHttpDownload class because current cTlsClient supports only synchronous calls while the cHttpDownload class implements upload and download operations asychronously.

When someone sends a Pull Request w/ asychronous TLS client class, then cHttpDownload class can be easily based on it for both http and https support.

wqweto commented 4 years ago

FYI, latest version of cHttpDownload is re-based on the new cTlsSocket class and officially supports https encrypted downloads and uploads.

M2000Interpreter commented 4 years ago

Thanks