-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: node-lib/node-http2
base: master
head repository: molnarg/node-http2
compare: master
- 19 commits
- 9 files changed
- 10 contributors
Commits on Apr 28, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a6f437a - Browse repository at this point
Copy the full SHA a6f437aView 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 Mar 7, 2017
-
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 a62839e - Browse repository at this point
Copy the full SHA a62839eView commit details -
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 47650b9 - Browse repository at this point
Copy the full SHA 47650b9View commit details
Commits on Apr 3, 2017
-
http://httpwg.org/http-extensions/origin-frame.html ORIGIN FRAME uses codepoint 0xB, which BLOCKED was squatting on. BLOCKED is removed by this patch.
Configuration menu - View commit details
-
Copy full SHA for e12eb8e - Browse repository at this point
Copy the full SHA e12eb8eView commit details
Commits on Apr 11, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 9759f5c - Browse repository at this point
Copy the full SHA 9759f5cView commit details
Commits on Sep 21, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 2869c84 - Browse repository at this point
Copy the full SHA 2869c84View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f174b2 - Browse repository at this point
Copy the full SHA 4f174b2View commit details
Commits on Feb 16, 2018
-
Merge pull request molnarg#241 from mcmanus/originFrame
Support for ORIGIN FRAME
Configuration menu - View commit details
-
Copy full SHA for f3189f3 - Browse repository at this point
Copy the full SHA f3189f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0fde18 - Browse repository at this point
Copy the full SHA c0fde18View commit details
Commits on Mar 1, 2019
-
ignore inherited properties when iterating through flags
Winnie committedMar 1, 2019 Configuration menu - View commit details
-
Copy full SHA for 7d00ff8 - Browse repository at this point
Copy the full SHA 7d00ff8View commit details
Commits on Feb 24, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 239da7e - Browse repository at this point
Copy the full SHA 239da7eView commit details -
Merge pull request molnarg#258 from guest271314/guest271314-patch-1
Use static module resolution
Configuration menu - View commit details
-
Copy full SHA for eb73219 - Browse repository at this point
Copy the full SHA eb73219View commit details
Commits on Mar 30, 2025
-
Merge pull request molnarg#235 from airtimemedia/go-away-fix
GOAWAY deserialization fix
Configuration menu - View commit details
-
Copy full SHA for e1cfa27 - Browse repository at this point
Copy the full SHA e1cfa27View commit details -
Configuration menu - View commit details
-
Copy full SHA for aab8b12 - Browse repository at this point
Copy the full SHA aab8b12View commit details -
Merge pull request molnarg#222 from simllll/master
memory leak fix (by argon) and another 'upstream is not defined' check
Configuration menu - View commit details
-
Copy full SHA for 7751faf - Browse repository at this point
Copy the full SHA 7751fafView commit details -
Merge pull request molnarg#255 from winniecluk/checkFlagsForOwnProperty
ignore inherited properties when iterating through flags
Configuration menu - View commit details
-
Copy full SHA for 2966f25 - Browse repository at this point
Copy the full SHA 2966f25View commit details -
Merge pull request molnarg#236 from airtimemedia/fix-invalid-assert
Remove invalid assert
Configuration menu - View commit details
-
Copy full SHA for ddb2159 - Browse repository at this point
Copy the full SHA ddb2159View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master