-
Notifications
You must be signed in to change notification settings - Fork 186
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
Clean up ended streams to free leaked memory #200
Open
argon
wants to merge
8
commits into
molnarg:master
Choose a base branch
from
node-apn: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.
Commits on May 1, 2016
-
Configuration menu - View commit details
-
Copy full SHA for e4fdf71 - Browse repository at this point
Copy the full SHA e4fdf71View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7f1e30 - Browse repository at this point
Copy the full SHA a7f1e30View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e36236 - Browse repository at this point
Copy the full SHA 9e36236View commit details
Commits on Oct 20, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 9e81bd5 - Browse repository at this point
Copy the full SHA 9e81bd5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5421660 - Browse repository at this point
Copy the full SHA 5421660View commit details
Commits on Nov 8, 2016
-
Merge pull request #1 from simllll/master
latest http2 including mem leak fix and stream.upstream not defined check
Configuration menu - View commit details
-
Copy full SHA for aec8aaa - Browse repository at this point
Copy the full SHA aec8aaaView commit details
Commits on Mar 15, 2017
-
Fixes molnarg#228 In the case where this._push(frame) returns null (i.e., the frame is too large for the window and split or the window size is <=0), moreNeeded will be set to null. Then this._queue.push(frame) is called, but moreNeeded is still null. Thus, any time the window is <=0 or the frame is split we'll hit the assert: var moreNeeded = null; if (this._queue.length === 0) { moreNeeded = this._push(frame); } if (moreNeeded === null) { this._queue.push(frame); } return moreNeeded; Credit goes to @jrabek for original version of this patch
Configuration menu - View commit details
-
Copy full SHA for 074a654 - Browse repository at this point
Copy the full SHA 074a654View commit details -
Fix GOAWAY deserialization when debug data is present
Additional debug data is allowed to be included in the GOAWAY frame: https://http2.github.io/http2-spec/#GOAWAY. We now put that data into frame.debug_data instead of returning a FRAME_SIZE_ERROR. Fixes molnarg#218 and molnarg#219.
Configuration menu - View commit details
-
Copy full SHA for dff41d9 - Browse repository at this point
Copy the full SHA dff41d9View commit details
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.