We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
proposal from @mathieucarbou
send vs reply:
#ifdef PSYCHIC_TO_ESPASYNCWS esp_err_t send(int code) { return reply(code); } esp_err_t send(int code, const String& contentType = emptyString, const String& content = emptyString); #endif
constructor:
PsychicHttpServer(uint16_t port = 80);
begin / end vs listen / stop:
#ifdef PSYCHIC_TO_ESPASYNCWS void begin(uint16_t port = 80) { listen(port); } void end() { stop(); } #endif
etc...
The text was updated successfully, but these errors were encountered:
mathieucarbou
Successfully merging a pull request may close this issue.
proposal from @mathieucarbou
send vs reply:
constructor:
begin / end vs listen / stop:
etc...
The text was updated successfully, but these errors were encountered: