forked from me-no-dev/ESPAsyncWebServer
-
Notifications
You must be signed in to change notification settings - Fork 22
Redefine DYNAMIC_JSON_DOCUMENT_SIZE if not defined (#922) #3
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
Open
StephS
wants to merge
525
commits into
lorol:master
Choose a base branch
from
me-no-dev:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ng partial events that straddle buffers; Improvement: don't hold onto event items until ack, immediately remove them from queue Copy of esphome#41
AsyncEventSource writes multiple events per tcp send, including partial events that straddle buffers; Improvement: don't hold onto event items until ack, immediately remove them from queue
(fix #94) Remove MAX_PRINTF_LEN limitation and fixed wrong usage of vsnprintf
Fix minor typos
This reverts commit 7b560ec.
- request->setAttribute(name, val) - request->hasAttribute(name) - request->getAttribute(name, defaultValue)
(feat) Add support for request attributes
All headers are already parsed: interesting headers allowed to cleanup parsed headers to only keep interesting ones during request processing. Removing "interesting headers" support will keep these parsed headers in heap memory during request processing before being freed at the end of the request. If you really need to cleanup some headers to get more heap space during request processing, use a middleware and removeHeadersExcept(names) to remove some.
(perf) Remove "interesting headers" to fasten request processing (replaced with `removeHeadersExcept`)
Reset connection when appropriate + some code cleanup
Revert "use my AsyncTCP fork" This reverts commit b956d15. use my AsyncTCP fork
SSE 0xa fix
update readme on build options
Specifying libCompatMode in library.json prevents projects from overriding the library compatibility mode as needed. This prevents the library from being used in builds where Arduino is a component to ESP-IDF.
Remove libCompatMode from library.json
IMS template must contain GMT timezone, not local - "%a, %d %b %Y %H:%M:%S GMT" create etag based on timestamp + filesize INM header handling should have precedence over IMS
rework INM/IMS handling for AsyncStaticWebHandler
…e 3.1.1 which now has Middleware support
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See original PR me-no-dev#922 Allows override of DYNAMIC_JSON_DOCUMENT_SIZE