|
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