Skip to content

Commit 0edce70

Browse files
committed
Rebranding nghttp2
1 parent 7b59a11 commit 0edce70

File tree

171 files changed

+7747
-12353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+7747
-12353
lines changed

Makefile.am

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Spdylay - SPDY Library
1+
# nghttp2 - HTTP/2.0 C Library
22

33
# Copyright (c) 2012 Tatsuhiro Tsujikawa
44

@@ -20,7 +20,7 @@
2020
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2121
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2222
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23-
SUBDIRS = lib src tests examples doc python
23+
SUBDIRS = lib src tests examples doc
2424

2525
ACLOCAL_AMFLAGS = -I m4
2626

NEWS

-73
Original file line numberDiff line numberDiff line change
@@ -1,73 +0,0 @@
1-
spdylay 1.0.0
2-
=============
3-
4-
Release Note
5-
------------
6-
7-
This release adds several enhancements to the spdyct and shrpx and
8-
strict checks for name/value pairs. It fixes the bug that server can
9-
not push the stream against server initiated stream ID. The internal
10-
priority management mechanism is updated so that outbound DATA frames
11-
with variety of SPDY priority can interleave more frequently and don't
12-
let the low priority streams starve. The development is very stable
13-
now, so we'll make this release 1.0.0.
14-
15-
Changes
16-
-------
17-
18-
* Adjust priority of outbound DATA frames so that it does not starve
19-
others
20-
21-
This change makes frames with variety of priority interleave more
22-
frequently.
23-
24-
* Drop priveleges only after listening on possibly priveleged port
25-
26-
Patch from moparisthebest
27-
28-
* Add --honor-cipher-order option to mitigate BEAST attacks
29-
30-
Patch from moparisthebest
31-
32-
* Fix building on mac os x. "error: invalid suffix on literal; C++11
33-
requires a space between literal and identifier"
34-
35-
Patch from snnn
36-
37-
* Allow server initiated stream ID in associated-stream-id
38-
39-
* spdycat, shrpx: TLS SNI enhancements
40-
41-
shrpx:
42-
* Added an option to set the TLS SNI extension between shrpx and the
43-
origin on the command line
44-
45-
spdycat:
46-
* If the user set an explicit host header ( using --headers ) use that
47-
name for the TLS SNI extension.
48-
* Added the handshake completion time to the verbose output
49-
* The gettimeofday call in get_time was using the incorrect structure
50-
( I believe )
51-
* In update_html_parser it was submitting the request regardless of
52-
the return value of add_request.
53-
54-
Patch from Stephen Ludin
55-
56-
* shrpx: Support non-TLS SPDY in frontend connection
57-
58-
* Don't allow control characters in outgoing name/value pairs
59-
60-
This check is done in spdylay_submit_* family functions and they
61-
will return error if they found control characters.
62-
63-
* Don't pack multiple empty header values in one header field
64-
65-
SPDY spec does not allow multiple empty header values in one header
66-
field. This change makes out-going framer ignore such empty header
67-
value if there is non-empty header value with the same name.
68-
69-
* Fix the incoming last empty header value is not checked properly
70-
71-
This change fixes the bug that spdylay_frame_unpack_nv does not
72-
check the size of header value if it is the last value in NULL
73-
separated list.

0 commit comments

Comments
 (0)