-
Notifications
You must be signed in to change notification settings - Fork 13.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TLS server #1740
Comments
do SSL initialization in WiFiServerSecure |
Is this completed now? I am very happy if it is :D Any docs anywhere for this ? |
No, this is an open issue. |
Ok thanks is there much progress with it or ETA ? |
Any update on TSL server? |
I have Tls server working with ESPAsyncTCP. Requires git version of this repo and a define in the lib to be changed. Running ssl server eats heap ;) monitor it or get exceptions if you run out. |
Thanks, i was reading your ESPAsyncTCP, look like have to convert my standard web server to async version. Any chance of merging async server code back into standard esp8266/Arduino library? And, (outside this discussion) using a similar style of functions server.arg instead of request -> arg for an easier conversion? |
Server.arg is not an option here, because in async you are handling multiple requests at the same time and each has its own args and more. I doubt changing server.arg to request->arg is that big of a deal ;) and also i never meant it to be a drop-in replacement |
Thanks for explanation. |
#3001 contains an implementation of WiFiServerSecure. Haven't reviewed/tested it yet, if anyone is interested in this, please try the PR. |
Wrapping TLS server support into something like WiFiServerSecure should be pretty easy.
SSL_CTX
) between WiFiClientSecure and WiFiServerSecureWant to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: