CHANGELOG revision 03fef29b
12020-08-26
2    - 2.19.7
3    - Handle ECT-CE event: issue a loss event.
4    - Log the fact that we ignore SETTINGS_MAX_HEADER_LIST_SIZE.
5    - Use Max Push ID in GOAWAY frame to cancel promises.
6    - Add support for HTTP/3 CANCEL_PUSH frame.
7    - lsquic_stream_is_pushed: streams without headers are never pushed.
8    - [BUGFIX] Regression in lsquic_stream_shutdown_internal: now it shuts down.
9    - Improve logic whether to generate CONNECTION_CLOSE.
10
112020-08-20
12    - 2.19.6
13    - Don't process incoming ECN marks if ECN is not enabled.
14    - Schedule ACK when incoming packet is marked with CE.
15
162020-08-11
17    - 2.19.5
18    - [BUGFIX] Generate frame record when moving an ACK from one buffered
19      packet to another.
20
212020-08-06
22    - 2.19.4
23    - [BUGFIX] Do not return an oversize MTU probe to connection twice.
24    - [FEATURE] Delayed Acks updated to latest draft.  Still experimental.
25    - Minor code cleanup in IETF full connection.
26
272020-08-04
28    - 2.19.3
29    - [BUGFIX] Regression in 2.19.1 that breaks Q050
30
312020-07-30
32    - 2.19.2
33    - [BUGFIX] Do not reduce PLPMTU size by network overhead.
34    - [BUGFIX] Windows build.
35
362020-07-29
37    - 2.19.1
38    - [FEATURE] DPLPMTUD support.  IETF connections now search for the
39      maximum packet size, improving throughput.
40    - [DEBUG] Record event in stream history when on_close() is called
41      in dtor.
42
432020-07-22
44    - 2.18.2
45    - [BUGFIX] Send prediction: lone path challenges do not get squeezed out
46    - Fix crash in http_client: now -K and -B can be used simultaneously
47
482020-07-14
49    - 2.18.1
50    - [FEATURE] Implement the "QUIC bit grease" extension.
51    - [BUGFIX] Selecting CID used for logging on client.
52    - [BUGFIX] Header protection assertion.
53    - [BUGFIX] Server: enable SSL key logging when cert lookup callback
54      is not set.
55    - Remove some dead code.
56
572020-07-06
58    - 2.18.0
59    - [API] Rename "0-RTT" to "session resumption." In IETF QUIC, "0-RTT"
60      always refers to early data, meaning a request that the server can
61      reply to in the very first return flight.  A more appropriate name
62      for what we support on the client site is "session resumption," which
63      is standard TLS terminology.  Later, when we add support for 0-RTT
64      (early data), we can use the 0-RTT terminology again, this time in
65      proper context.
66    - [BUGFIX] Do not set certificate callback if ea_lookup_cert is NULL.
67    - [BUGFIX] Make connection tickable when it's marked as closed.
68    - [BUGFIX] Fail certificate lookup if SNI is not present in HTTP mode.
69    - Several documentation fixes and improvements.
70    - Minor code cleanup.
71
722020-06-24
73    - 2.17.2
74    - [BUGFIX] Infinite loop in stream: advance read offset when discarding
75      data.
76    - [OPTIMIZATION] Header protection: only initialize cipher once.
77    - [OPTIMIZATION] Batch header protection application.
78
792020-06-18
80    - 2.17.1
81    - [FEATURE] QUIC and HTTP/3 Internet Draft 29 support.
82    - [BUGFIX] Check that scheduled packets are also sendable when
83      calculating a connection's "tickable" property.
84    - [BUGFIX] Don't count scheduled packets as in-flight when pacer is
85      checked on tick.
86    - gQUIC: delay calling on_new for pushed stream until headers are
87      available.
88    - Allow nested calls to lsquic_engine_connect().
89
902020-06-15
91    - 2.16.3
92    - [OPTIMIZATION] Stash up to two reordered packets in IETF mini conn
93      instead of dropping them.
94    - [BUGFIX] Crash: check decrypt context before using it.  This regression
95      was introduced in 2.16.2.
96
972020-06-12
98    - 2.16.2
99    - [BUGFIX] ID-28: do not use TLS middlebox compatibility mode in
100      ClientHello.  This change requires using a newer version of BoringSSL.
101    - [BUGFIX] Free connections in Advisory Tick Time Queue in engine dtor.
102    - [BUGFIX] IETF QUIC client: narrow migration check to a single path.
103    - [BUGFIX] NULL dereference: set function pointers for alarm for path
104      challenges 2 and 3.
105    - [BUGFIX] HTTP/3 headers may be followed immediately by trailers.
106    - [BUGFIX] Log messages when SCID changes.
107
1082020-06-09
109    - 2.16.1
110    - [FEATURE] Use "no-progress timeout" after which connection is closed.
111    - [BUGFIX] Select new SCID when current SCID is retired.
112    - [BUGFIX] Don't warn about dropped Initial packet sequence gaps during
113      mini/full handoff.
114    - [BUGFIX] Send correct conn error when HTTP/3 frame is truncated.
115    - [BUGFIX] Mini conn: consider amplification when deciding to return
116      TICK_SEND.
117    - [BUGFIX] Don't double-count tag length in amplification logic.
118    - [BUGFIX] Don't squeeze out lone path challenges.
119    - [BUGFIX] Log messages dealing with scheduled packet queue squeezing.
120    - [BUGFIX] don't wipe current path if no path challenge responses
121      come back.
122    - [BUGFIX] When path is reset, don't lose path_id which is used for
123      logging.
124    - Downgrade flow control violations to info log level from warnings.
125    - Fix connection cap extra check, avoid checks in nested calls.
126    - Fix some unit tests when extra checks are enabled.
127    - Use ls-hpack 2.2.1.
128    - Turn off unconditional extra checks for IETF clients.
129    - Extra checks: don't verify sent size of hello packets.  Client
130      changes DCID length and this check will fail.
131
1322020-06-03
133    - 2.16.0
134    - [API] Use lsxpack_header v206.
135    - [FEATURE] Windows supported.
136    - [BUGFIX] Fix uninitialized variable use in client (regression in
137      2.15.0).
138    - Use ls-hpack 2.2.0.
139    - Use ls-qpack 2.2.0.
140    - Sample programs: fix the way maximum number of packets is
141      calculated.
142    - Remove some dead code.
143
1442020-05-27
145    - 2.15.0
146    - [FEATURE] QUIC and HTTP/3 Internet Draft 28 support.
147    - [BUGFIX] Ignore Retry packets after other packets are decrypted
148      successfully.
149    - [BUGFIX] Transport parameter decoding: CID no longer has 4-byte
150      length minimum.
151    - http_client: fix and optimize lsxpack_header allocator.
152    - Drop support for Internet Draft 25.
153
1542020-05-19
155    - 2.14.8
156    - Support Android.
157    - Rerrange tree: move command-line examples into bin/ and unit
158      tests into tests/ from test/unittests/.
159
1602020-05-12
161    - 2.14.7
162    - [BUGFIX] ALPN-to-version mapping: do not skip h3-Q050.
163    - [BUGFIX] Frame reader: skip headers if target stream is closed.
164
1652020-05-06
166    - 2.14.6
167    - [BUGFIX] Fix amplification mitigation in 0-RTT case.
168    - [BUGFIX] IETF mini connection should not tickable if cannot send
169      a packet due to amplification.
170    - [BUGFIX] Fail if active_connection_id_limit TP is smaller than 2.
171    - [BUGFIX] Qlog server certificates for IETF QUIC connections.
172    - [BUGFIX] Uninitialized struct padding usage in tokgen (benign).
173    - [BUGFIX] Incorrect argument to shi_lookup() (benign).
174
1752020-04-29
176    - 2.14.5
177    - [BUGFIX] In coalesced datagram, ignore packets whose CID does not match.
178    - [BUGFIX] Frame reader: skip headers if target stream is not found.
179    - [BUGFIX] Log message in QPACK decoder handler.
180
1812020-04-24
182    - 2.14.4
183    - [BUGFIX] Heed es_rw_once for pushed HTTP/3 streams.
184    - [BUGFIX] IETF client: set correct flags on bidirectional streams.
185    - [BUGFIX] Generate Cancel Stream QPACK instructions for abandoned
186      streams.
187    - [BUGFIX] Do not call header callbacks after stream is closed.
188    - Use ls-qpack 2.1.1
189
1902020-04-15
191    - 2.14.3
192    - [BUGFIX] gQUIC: pass correct stream to hsi_create_header_set() callback.
193    - [BUGFIX] Use ls-hpack 2.1.1
194    - Improve stream code readability.
195    - Use ls-qpack 2.0.5
196
1972020-04-08
198    - 2.14.2
199    - [BUGFIX] Use ls-qpack 2.0.4
200    - [BUGFIX] Honor max packet size on the client and when path changes.
201    - http_server: fix prepare_decode() function.
202
2032020-04-07
204    - 2.14.1
205    - [BUGFIX] Place connections on tickable queue when sending is reenabled.
206    - [BUGFIX] A connection is tickable if it has unsent packets.
207    - [BUGFIX] Heed peer's max_packet_size transport parameter.
208
2092020-03-30
210    - 2.14.0
211    - [API] Use lsxpack_header structure to send HTTP headers.
212    - [OPTIMIZATION] nocopy's readable_bytes() function.
213    - http_server: fix typo in error message
214    - Use ls-hpack 2.1.0.
215    - Use ls-qpack 2.0.0.
216
2172020-03-23
218    - 2.13.3
219    - [BUGFIX] ACK ping-pong: TIMESTAMP frame is not to be acked.
220
2212020-03-13
222    - 2.13.2
223    - [BUGFIX] Use of new lsxpack_header API's hsi_prepare_decode().
224
2252020-03-12
226    - 2.13.1
227    - [API] Use lsxpack_header structure to process incoming headers.
228    - [BUGFIX] Fix assertion when zero-padding Initial packet.
229    - [BUGFIX] Use idle timeout before we learn of peer's value.
230    - Use ls-hpack 2.0.1 -- has lsxpack_header changes.
231    - Use ls-qpack 0.14.0 -- new, common with ls-hpack, XXH seed (not
232      used yet).
233    - Code cleanup: prefix exported functions with "lsquic_".
234
2352020-03-02
236    - 2.12.0
237    - [FEATURE] QUIC timestamps extension.
238    - [API] New: ea_alpn that is used when not in HTTP mode.
239    - [BUGFIX] SNI is mandatory only for HTTP/3 and gQUIC.
240    - [BUGFIX] Benign double-free -- issue #110.
241    - [BUGFIX] Printing of transport parameters.
242
2432020-02-24
244    - 2.11.1
245    - [FEATURE] QUIC and HTTP/3 Internet Draft 27 support.
246    - [FEATURE] Add experimental delayed ACKs extension.
247    - Drop support for Internet Draft 24.
248    - Code cleanup.
249
2502020-02-14
251    - 2.10.6
252    - [BUGFIX] HTTP/3 framing: don't misinterpret rare occurence as error.
253    - [BUGFIX] Send gap warning due to missing poisoned packet.
254    - Stream unit test for scenario in issue #106.
255
2562020-02-13
257    - 2.10.5
258    - [BUGFIX] BBR: call cci_sent() with correct arguments and at correct
259      time.
260    - Refactor transport parameters module.
261    - Minor code cleanup.
262
2632020-02-11
264    - 2.10.4
265    - [BUGFIX] Send HANDSHAKE_DONE only after Finished is received.
266    - [BUGFIX] Don't treat garbage UDP padding as library error; ignore
267      it instead.
268    - [BUGFIX] Fix compilation on FreeBSD (missing header).
269    - Code cleanup: remove unnecessary #includes.
270
2712020-01-31
272    - 2.10.3
273    - [BUGFIX] Cancel path responses and challenges on old path when
274      switching to new path
275    - Logging network path information.
276
2772020-01-30
278    - 2.10.2
279    - [BUGFIX] Do not delay ACKs for Initial and Handshake packets.
280    - [BUGFIX] Send PATH_CHALLENGE if path changed before mini conn
281      promotion.
282    - Logging improvements.
283    - http_client: discard data faster.
284
2852020-01-29
286    - 2.10.1
287    - [BUGFIX] Coalesced packets could get longer than normal packet
288      size.
289    - Add spin bit configuration option es_spin (-o spin=[01]).
290    - Disable spin bit in 1/16 of connections.
291    - Improve logging a bit.
292
2932020-01-28
294    - 2.10.0
295    - [FEATURE] QUIC and HTTP/3 Internet Draft 25 support.
296    - [API] Drop support for ID-23.
297    - [BUGFIX] Set key phase bit on outgoing packets correctly.
298    - Code cleanup.
299
3002020-01-20
301    - 2.9.0
302    - [API] Drop support for Q039.
303    - Improve ACK-queuing logic.  Send an ACK once in a while if
304      peer keeps on sending non-ack-eliciting packets.
305    - Improve Alt-Svc string: Q050 and later are not included in
306      the old-style "quic" string.
307    - Send stateless resets if connection could not be promoted.
308    - Schedule MAX_DATA if needed when DATA_BLOCKED is received.
309    - Use ls-qpack 0.11.2 -- needed for server push optimization.
310    - Code cleanup: handle some error cases, improve logging.
311
3122020-01-16
313    - 2.8.9
314    - [BUGFIX] Use ls-qpack 0.11.1
315    - [OPTIMIZATION] Generate random bytes in batches.
316    - Change loss_bits transport parameter ID to 0x1057 following
317      latest draft.
318    - Randomize period with which PINGs are sent to elicit ACKs.
319    - Some refactoring and code cleanup.
320
3212020-01-14
322    - 2.8.8
323    - [BUGFIX] Invalid read when parsing IETF transport parameters
324      (this was benign).
325    - [OPTIMIZATION] Frame bundling when using buffered packets in
326      IETF QUIC: a) flush QPACK decoder stream and b) include ACKs
327      in opportunistic fashion.
328    - Fix HTTP/3 framing unit test.
329    - Code cleanup.
330
3312020-01-09
332    - 2.8.7
333    - [BUGFIX] Initial packet size check for IETF mini conn applies to
334      UDP payload, not QUIC packet.
335    - Support old and new school loss_bits transport parameter.
336    - Use Q run length of 64 as suggested in the loss bits Draft.
337    - Undo square wave count when packet is delayed.
338    - Code cleanup; minor fixes.
339
3402020-01-06
341    - 2.8.5
342    - [HTTP3] Verify number of bytes in incoming DATA frames against
343      content-length.
344    - [HTTP3] Stop issuing streams credits if peer stops opening QPACK
345      decoder window.  This addresses a potential attack whereby client
346      can cause the server to keep allocating memory.  See Security
347      Considerations in the QPACK draft.
348    - [BUGFIX] Mini conn: don't shorten max packet size for Q050 and later.
349    - [BUGFIX] Init IETF connection flow controller using correct setting.
350    - [BUGFIX] Fix unintended sign extension when removing header protection.
351    - Code cleanup and minor fixes.
352
3532019-12-30
354    - 2.8.1
355    - [FEATURE] Use occasional packet number gaps to detect optimistic
356      ACK attacks.
357    - [BUGFIX] Q050 client: all packet numbers are in the App PNS.
358    - [OPTIMIZATION] Merge multi-range ACK frames, not just single-range
359      ACK frames.
360    - IETF QUIC: use RTT estimate in ack timeout calculation.
361    - IETF handshake: abort conn when unexpected errors occur.
362    - Use PING rather than MAX_DATA frames to elicit ACKs from peer.
363    - Server: enforce 1200 byte Initial minimum packet size.
364    - [CLEANUP] Remove code to disable gQUIC crypto.
365    - [CLEANUP] Remove n_timestamps from ACK info struct.
366    - Optimize driver: reuse previous ancillary message when possible.
367
3682019-12-23
369    - 2.8.0
370    - [FEATURE] Add support for Q050.
371    - [OPTIMIZATION] Reduce mallocs in gQUIC handshake.
372    - [BUGFIX] Disable redo of failed STREAM frame insertion with debug
373      logging.
374
3752019-12-18
376    - 2.7.3
377    - [DEBUG] Further dedup next advisory tick messages when reason is
378      the same.
379    - [BUGFIX] Update size of `a` array in TP struct.  Fixes (benign)
380      GitHub bug #94.
381    - Use Cubic by default again instead of BBR, as it delivers more
382      consistent performance.
383
3842019-12-11
385    - 2.7.2
386    - [BUGFIX] Send controller: update scheduled bytes when DCID length
387      changes (IETF client).
388    - [BUGFIX] Drop alarm check from sanity test.  It no longer works now
389      that we use loss chains.
390    - [PORTABILITY] Fix build on Alpine Linux.
391    - [PORTABILITY] Fix build using XCode.
392    - Client initial DCID length: use RAND_bytes() instead of rand(3).
393    - Add unit tests for connection min heap.
394    - [DEBUG] Log CID in gQUIC handshake module
395    - [DEBUG] Turn on extra checks for IETF client send controller.
396    - [DEBUG] Dedup next advisory tick messages when reason is IDLE timer.
397    - [DEBUG] QPACK decoder handler: log header error code.
398
3992019-12-05
400    - 2.7.1
401    - [BUGFIX] client: don't call ignore_init() in middle of batch send.
402      ignore_init() makes an assumption that the send controller has access
403      to all outgoing packets.  This change wraps a few IETF full connection
404      methods to delay calling ignore_init() until the engine returns all
405      outgoing packets that were batched.
406    - [BUGFIX] set errno to EAGAIN if sendmmsg() can't send all of them.
407      This needs to be done because the value of errno may be lost on
408      some platforms.
409    - [BUGFIX] Typo that set all bits in sm_qflags lead to crashes.
410    - [BUGFIX] Do not cancel header block processing after failure, as
411      QPACK releases the reference in that case.
412    - [CLEANUP] IETF encrypt: replace assert(0) with a warning.
413    - Several small improvements to the test server.
414
4152019-11-27
416    - 2.7.0
417    - [API, FEATURE] Close connection immediately when ea_packets_out()
418      fails with errno != EAGAIN.  The API change is that errno is now
419      examined.  Make sure to set it if using something other than
420      sendmsg() to send packets.
421    - [CLEANUP] Immediate close logic in IETF full conn.
422    - [CLEANUP] Fix bogus warning about uninitialized `pair' variable.
423
4242019-11-22
425    - 2.6.7
426    - [FEATURE] Implement the QL extension (offered by default).
427    - [BUGFIX] Abort when encountering unexpected HTTP/3 frames.
428    - [BUGFIX] Acknowledge (QPACK) HTTP/3 trailers correctly.
429    - [DEBUG] Turn on debug message for next advisory tick.
430
4312019-11-20
432    - 2.6.6
433    - [BUGFIX] Using HTTP/3 to HTTP/1.x converter.
434    - [BUGFIX] Truncate log messages instead of throwing them away.
435
4362019-11-15
437    - 2.6.5
438    - [BUGFIX] High priority buffered packet queue length.
439    - [BUGFIX] Rain time calculation: max_ack_delay is in milliseconds.
440
4412019-11-12
442    - 2.6.3
443    - [BUGFIX] Close DATA frames with empty payload correctly.
444
4452019-11-11
446    - 2.6.2
447    - [BUGFIX] SCID!=ODCID rule applies to Retry packets, not regular
448      packets.
449    - [BUGFIX] Zero-RTT: BoringSSL no longer flips read/write secrets.
450    - [BUGFIX] Truncate ACK frame rather instead of aborting IETF
451      connection.
452    - [BUGFIX] Client: don't send duplicate reset tokens.
453    - [BUGFIX] Remove invalid assertion in H3 framing code.
454    - Silence a warning in send ctl by restructuring switch() statement.
455
4562019-11-08
457    - 2.6.1
458    - [BUGFIX] set retry token on all resubmitted packets.
459    - Event log: log sent packet flags.  In particular, this allows one
460      to see whether token was sent.
461    - Don't migrate client if es_allow_migration is false.
462
4632019-11-07
464    - 2.6.0
465    - [FEATURE] QUIC and HTTP/3 Internet Draft 24 support
466
4672019-11-07
468    - 2.5.2
469    - [BUGFIX] argument order to gQUIC client constructor.  Regression
470      introduced in 2.5.0.
471    - [BUGFIX] split buffered packet error recovery: destroy the correct
472      packet.
473
4742019-11-04
475    - 2.5.1
476    - [BUGFIX] Fix double-free when emptying a packet number space.
477    - [BUGFIX] http_server: fix md5sum handler: handle EOF correctly.
478    - [BUGFIX] Use random values in bits 4 and 5 of the first byte of
479      verneg packets (regression introduced in 2.5.0).
480    - [OPTIMIZATION] Don't compile in expensive attq checks by default.
481    - [OPTIMIZATION] http_server: compile regexes only once.
482
4832019-10-31
484    - 2.5.0
485    - [API] lsquic_engine_connect() can now be passed QUIC version to use.
486    - [OPTIMIZATION] Queue opportunistic ACKs if there is data to be sent.
487    - [BUGFIX] Don't evict streams from priority iterator if there is
488      only one queue.
489    - [OPTIMIZATION, BUGFIX] Several other optimizations and bug fixes.
490    - Use ls-qpack v0.10.7.
491
4922019-10-24
493    - 2.4.10
494    - [BUGFIX] IETF QUIC server: fix uninitialized variable use.
495    - [BUGFIX] make sure TLSv1.3 is not disabled in SSL object.
496    - [BUGFIX] Use issuer name and serial number to cache certs (SKID
497      values are not unique).
498    - [BUGFIX] Always set the idle alarm in IETF connection so that it
499      can time out.
500    - Use ls-qpack v0.10.6, as it silences some warnings.
501
5022019-10-21
503    - 2.4.8
504    - [OPTIMIZATION, BUGFIX] Use ls-qpack v0.10.5.
505
5062019-10-15
507    - 2.4.7
508    - Add echo client and server to the distibution.
509    - Add MD5 client and server to the distibution.
510    - Fix http_client: check command-line arguments better, prevent crash.
511    - Fix IETF conn: can_write_ack() should only care about APP PNS.
512    - Client: delay stream creation until handshake succeds.
513    - Reset HTTP stream whose write end is closed prematurely.
514    - Fix tickable(): mirror behavior of tick() wrt buffered packets.
515    - Log reason why engine is tickable.
516
5172019-10-11
518    - 2.4.6
519    - Minor code cleanup and logging improvements.
520    - Server and client programs: include library version (e.g. 2.4.6)
521      into `server' and `user-agent' headers.
522
5232019-10-08
524    - 2.4.5
525    - [OPTIMIZATION]: flush encoder stream only when necessary.
526    - [BUGFIX] Use ls-qpack v0.10.2 for new API -- and for a bug fix.
527    - [BUGFIX] Typo in IETF conn SETTINGS writer.
528    - Use latest BoringSSL.
529
5302019-10-08
531    - 2.4.4
532    - [API] Add lsquic_alpn2ver() to aid parsing Alt-Svc header.
533    - [BUGFIX] NULL dereference when H3 frame header would be split.
534    - [BUGFIX] Do not close fixed-size H3 frame prematurely.
535    - [BUGFIX] Allow PING frames in IETF mini conn.
536    - [BUGFIX] Mini conns: don't send any packets after receiving
537      CONNECTION_CLOSE.
538    - [BUGFIX] Client migration: reserve slot for DCID from transport params.
539    - [BUGFIX] Allow max_early_data_size=0 -- early_data might not be there.
540    - [BUGFIX] Use an invalid stream number to reset BPT cache (zero is now a
541      valid stream number).
542    - [SPEC] Use FINAL_SIZE_ERROR when FIN mismatch is detected.
543    - [OPTIMIZATION] Closed connection only gets one chance to send packets.
544    - [OPTIMIZATION] Flush headers stream before packetizing stream data.
545    - [OPTIMIZATION] process QPACK encoder STREAM frames immediately.
546    - Update ls-qpack to v0.10.1.
547
5482019-09-30
549    - 2.4.3
550    - Add GQUIC versions to the list of h3 ALPNs for Alt-Svc header.
551      For example, h3-Q043.  Chrome will switch to using this format at
552      some point in the future.
553    - [BUGFIX] Send correct value in max_streams_uni transport param
554    - [SPEC] Abort IETF QUIC connection if max_early_data_size is not set
555      to 0xFFFFFFFF
556
5572019-09-23
558    - 2.4.2
559    - [BUGFIX] H3 framing: fix zero-byte write when space is available
560    - [BUGFIX] Don't send STREAM frame when incoming unidirectgional stream
561      is closed
562    - [BUGFIX] Cancel all pending writes by stream reset by a GOAWAY
563    - [BUGFIX] Fix use-after-free in IETF full conn
564    - [OPTIMIZATION] Wait for session tickets for two seconds and then drop
565      SSL object and crypto streams.
566
5672019-09-18
568    - 2.4.0
569    - [FEATURE] QUIC and HTTP/3 Internet Draft 23 support
570
5712019-09-13
572    - 2.3.1
573    - [BUGFIX] Fix memory leaks
574    - [BUGFIX] Fix unit tests
575
5762019-09-12
577    - 2.3.0
578    - [FEATURE] BBR congestion control is on by default
579    - [BUGFIX] BBR app-limited logic
580    - [BUGFIX] Fix uninitialized warnings in IETF
581    - [BUGFIX] Update ls-qpack to v0.9.14
582    - [CLEANUP] Code cleanup
583
5842019-09-11
585    - 2.2.0
586    - [FEATURE] Server code is included in the library
587    - [FEATURE] IETF QUIC and HTTP/3 Support (ID-22)
588
5892019-05-13
590    - 1.21.2
591    - [OPTIMIZATION] HPACK: use history to improve compression performance
592
5932019-05-06
594    - 1.21.1
595    - [BUGFIX] If FIN or RST not received, don't delay stream destruction.
596    - [OPTIMIZATION] Speed up HPACK encoder by using same hash value to
597      search static and dynamic tables.
598
5992019-04-12
600    - 1.21.0
601    - [FEATURE] Add qlog log module.
602
6032019-04-01
604    - 1.20.0
605    - [FEATURE] Add support for Q046.
606
6072019-03-19
608    - 1.19.6
609    - [BUGFIX] Ensure that Largest Observed does not decrease in ACKs we
610      send.  ACK frames placed in packets in buffered queues (optimization
611      introduced in 1.17.15) can be preceded by an ACK frame generated later.
612      In this case, the older ACK frame should not be sent out, as Chromium-
613      based servers flags decrease in the ACK frame's Largest Observed value
614      as an error.
615
6162019-03-05
617    - 1.19.5
618    - [BUGFIX] Use correct public key from PUBS based on KEXS index.
619    - [BUGFIX] Check flags before dispatching writes, avoiding assert.
620    - [BUGFIX] Set :scheme to "https" (instead of "HTTP").
621
6222019-02-25
623    - 1.19.4
624    - [BUGFIX] Check buffer bounds when looking up version in 0-RTT blob.
625    - [BUGFIX] http_client: don't fetch 0-rtt info if handshake failed.
626    - Log number of pacer calls at DEBUG, rather than NOTICE, level.
627
6282019-02-18
629    - 1.19.3
630    - [BUGFIX] Q044: don't encode packet number in 6 bytes.  Six-byte
631      packet number encoding does not exist in Q044.  This fixes a
632      regression introduced in '[BUGFIX] Buffered packets can contain
633      ACK frames' -- we need to keep QUIC version in mind when selecting
634      the longest possible packet number encoding used for the buffered
635      packet that carries the ACK.
636    - [BUGFIX] Do not increase CWND when timeout occurs.
637    - http_client: support setting handshake timeout on command line.
638      Use -o handshake_to=timeout.
639    - http_client: use -k to connect UDP socket to pick up ICMP errors.
640    - http_client: allow pathless mode, when only handshake is performed
641      without issuing any requests.  This can be done by simply not
642      specifying a -p flag on the command line.
643
6442019-02-11
645    - 1.19.2
646    - [BUGFIX] Begin negotiation with version provided in 0-RTT info.
647    - [BUGFIX] Version checking in zero_rtt deserialize function.
648
6492019-02-04
650    - 1.19.1
651    - [BUGFIX] Fix Windows build.
652
6532019-02-04
654    - 1.19.0
655    - [FEATURE, API Change] 0-RTT support.  Add function to export 0-RTT
656      information; it can be supplied to a subsequent connect() call.
657    - [FEATURE] Add -0 flag to http_client to exercise 0-RTT support.
658    - [BUGFIX] Resuscitate the Windows build.
659    - [BUGFIX] Send HTTP settings (max header list size) if necessary.
660    - [BUGFIX] Buffered packets can contain ACK frames.
661    - [BUGFIX] Make packet writeable once all STREAM frames are elided.
662    - [BUGFIX] Fix potential null dereference when realloc fails.
663    - cmake: simplify build configuration.
664
6652019-01-28
666    - 1.18.0
667    - [API Change] Can specify clock granularity in engine settings.
668    - [BUGFIX] Pacer uses fixed clock granularity.  Since the change on
669      2018-04-09, it is not necessary to try to approximate the next tick
670      time in the pacer: it can use fix clock granularity specified by
671      the user.
672    - [BUGFIX] Do not tick constantly before handshake is done.
673    - [BUGFIX] Do not exit tick prematurely: reuse packet with ACK.  Even
674      if we cannot allocate *more* packets, we could still be able to write
675      to one already allocated.
676    - [BUGFIX] Do not schedule pacer if there are no lost packets.
677
6782019-01-17
679    - 1.17.15
680    - [BUGFIX] http_client: make sure only one read per on_read() callback
681      is performed in the header conversion bypass (-B) mode.
682    - http_client: with -E, assign random priority when stream is created.
683    - [OPTIMIZATION] On immediate write, place an ACK frame into the first
684      buffered packet if an ACK is queued.  This reduces the number of
685      standalone ACK packets.
686    - [OPTIMIZATION] Allow placing more than one STREAM frame from the same
687      stream into an outgoing packet.  This change minimizes the number of
688      buffered packets required to store several small HTTP messages by
689      virtue of allowing more than one STREAM frame from HEADERS stream in
690      the same packet.
691    - [OPTIMIZATION] Flush headers when writing to buffered packets.  This
692      causes the headers to be written to the same buffered packet queue,
693      thereby improving packet utilization, especially for small HTTP
694      messages.
695
6962019-01-16
697    - 1.17.14
698    - [FEATURE] http_client can now collect stats: time to connect, TTFB,
699      time to download, requests per seconds, and bandwidth.  See -t flag.
700    - [BUGFIX] http_client: -B, -K, and -r can be used at the same time.
701    - [BUGFIX] http_client: do not display cert chain before each request.
702      Now this is only done once per connection, if the handshake is
703      successful and -a option is given.
704    - [BUGFIX] Do not wait to dispatch on_close() after reading.  If a
705      stream is scheduled to be closed after on_read() callback returns,
706      close it immediately instead of waiting until the end of the tick.
707      If client creates new request from on_close() event, they will be
708      processed in the same tick instead of waiting for the next one.
709    - [BUGFIX] HEADERS stream is critical: always treat it with highest
710      priority.
711
7122019-01-10
713    - 1.17.12
714    - [FEATURE] http_client can now issue parallel requests in the context
715      of a single connection.  See -w option.
716
7172019-01-03
718    - 1.17.11
719    - Fix strict aliasing warning in optimized compilation.
720
7212018-12-27
722    - 1.17.10
723    - Fix the example program to be able to use parallel connections
724      again.  (See the -n argument.)
725
7262018-12-18
727    - 1.17.9
728    - [BUGFIX] Engine: reduce minimum batch size from 256 to 4
729
7302018-12-10
731    - 1.17.8
732    - [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux
733
7342018-12-03
735    - 1.17.7
736    - [BUGFIX] Do not unset PING alarm before ringing expired alarms.
737      This prevented PING from ever being sent.
738
7392018-11-29
740    - 1.17.6
741    - Add failsafe: resume sending packets after some time
742
743      The change puts a 1-second limit on the amount of time the engine
744      will not send packets after some packets are delayed.  This makes
745      the library robust in case the user does not unblock the engine
746      explicitly using lsquic_engine_send_unsent_packets() call.
747
748    - [BUGFIX] Handle corner cases in send controller when packets are
749      a) delayed or b) dropped during repackaging.
750    - [BUGFIX] Memory leak: destroy buffered packets during controller
751      cleanup.
752
7532018-11-16
754    - 1.17.3
755    - [BUGFIX] Do not send STOP_WAITING frames when using Q044
756
7572018-10-19
758    - 1.17.2
759    - [BUGFIX] Memory leak in test_frame_rw unit test.
760    - [BUGFIX] Parsing packets with short IETF header: do not overwrite
761      flags.  (Only a problem in unit tests -- benign otherwise.)
762
7632018-10-16
764    - 1.17.0
765    - [API Change] Packet out Memory Interface (PMI) update:
766      - Split PMI pool return into pmi_release and pmi_return
767      - PMI callbacks take peer_ctx and is_ipv6 arguments
768    - [BUGFIX] Fix use-after-free when certificate is updated
769    - Silence gcc warning in optimized mode by performing useless
770      initialization
771    - cmake: use the standard variable CMAKE_BUILD_TYPE instead of
772      DEVEL_MODE
773
7742018-10-03
775    - 1.16.0
776    - [API Change] Add lsquic_conn_n_avail_streams()
777    - [BUGFIX] only dispatch crypto stream read events if WANT_READ is on
778
7792018-09-27
780    - 1.15.0
781    - [API Change] Add LSCONN_ST_PEER_GOING_AWAY to the list of conn statuses
782    - [BUGFIX] free uncompressed headers correctly when error occurs
783
7842018-09-12
785    - 1.14.3
786    - [BUGFIX] Do not abort conn on STREAM frame for a reset stream
787    - [BUGFIX] Drop packets that would become empty due to repackaging.
788      Packets on the scheduled queue may be marked for repackaging.
789      Frames such as ACK frame that are never resent are removed from
790      repackaged packets.  We must check that the newly repackaged packet
791      would not be empty.  If it would be, it is destroyed instead and
792      the next packet on the scheduled queue is used.  Note that this
793      change only affects the logic to return the next packet to be sent.
794      Lost packets that are being rescheduled are already processed in
795      this fashion.
796    - Byteswap CID before logging it - this makes it match Chrome CIDs.
797      (Except Q035, which is the last little-endian GQUIC version we
798      support.)
799
8002018-09-06
801    - 1.14.0
802    - [API Change] Disable packet sending if full batch cannot be sent
803      If lsquic_packets_out_f() cannot send the whole batch, disable
804      packet sending until lsquic_engine_send_unsent_packets() is called.
805    - [BUGFIX] Handle case when STREAM frame does not fit.
806    - [BUGFIX] Always allow incoming STREAM frames to overlap.  Peers
807      may send overlapping STREAM frames even if using versions older
808      than Q043.
809    - Custom header set fixes:
810      - set "FIN reached" flag when custom header with FIN flag is
811        claimed;
812      - do not return custom header set for a reset stream.
813
8142018-08-27
815
816    - 1.13.0
817    - [FEATURE, API Change] Add ability to create custom header set
818      objects via callbacks.  This avoids reading and re-parsing
819      headers from the stream.
820
8212018-08-27
822
823    - 1.12.4
824    - Fix memory leak when engine is destroyed
825    - Fix memory leak in http_client
826    - Fix gcc warning in unit tests
827
8282018-08-22
829
830    - 1.12.3
831    - [BUGFIX] Fix duplicate STREAM frame detection
832
8332018-08-20
834
835    - 1.12.2
836    - [BUGFIX] Update count of scheduled bytes when adjusting size of
837      an already-scheduled packet.
838    - Emit info instead of warning messages when stream is used in
839      unexpected ways.
840
8412018-08-17
842
843    - 1.12.0
844    - [FEATURE, API Change] Add support for certificate verification
845
8462018-08-16
847
848    - 1.11.1
849    - [BUGFIX] Fix STOP_WAITING frame processing in the new Q044 code
850
8512018-08-15
852
853    - 1.11.0
854    - [FEATURE] Add support for Q044.
855
8562018-08-09
857
858    - 1.10.2
859    - [BUGFIX] Don't go over limit when creating delayed streams
860
8612018-07-10
862
863    - 1.10.1
864    - [BUGFIX]  process connections after each batch of packets is read
865      This avoids a problem of accumulating a very large list of packets
866      (possible when speeds are high and socket's receive buffer is large)
867      and processing it all at once.
868    - If glibc is older than 2.17, link with rt.  This is necessary for
869      clock_getres(2).
870    - Add version macros to lsquic.h; remove unnecessary includes.
871
8722018-06-13
873
874    - [BUGFIX] allow multiple parallel connections by default
875
876      Use the original method of tracking connections by CIDs by default.
877      If zero-sized CID support is turned on, connections are tracked by
878      the address.  A new connection is not created if another connection
879      is using the same network address
880
8812018-05-30
882
883    - [FEATURE, API CHANGE] Support zero-sized CIDs in received packets
884
8852018-05-24
886
887    - Close connection properly when packet encryption fails
888
8892018-05-23
890
891    - [BUGFIX] Do not produce packet sequence gaps due to delayed packets
892
8932018-05-21
894
895    - [API Change] Add optional callback to call when handshake is done
896    - [API Change, BUGFIX] After send failure, wait until transport available
897
8982018-05-18
899
900    - [API] Expose useful lsquic_ver2str[] in lsquic.h
901    - [BUGFIX] Do not produce packet sequence gaps due to STREAM frame elision
902    - Improve checks of number of incoming streams limit and associated
903      error reporting.
904    - [BUGFIX] Command-line option `-6` now works correctly.
905
9062018-05-16
907
908    - [FEATURE] DNS resolution
909    - [BUGFIX] Frame insertion mis-ID as overlap instead of dup
910    - http_client: fix priority range generated by -E flag
911
9122018-05-09
913
914    - [FEATURE] Add support for Q043.
915    - Support for versions Q037, Q038, Q041, and Q042 has been removed.
916    - Fix typo in debug message.
917    - Fix code indentation.
918    - Add /* fallthru */ comment to stop newer gcc from complaining.
919    - Logger: fix compilation of optimized Windows build.
920
9212018-05-04
922
923    - [FEATURE] Add support for Q042.
924    - Remove comment: MSPC is obsolete (no code changes)
925    - Prog: use lsquic_str2ver() when processing -o version flag
926    - Remove unused CTIM and SRBF transport parameters
927    - Disable QUIC versions Q037 and Q038 by default
928    - Fix Windows compilation by including compat header file in
929      lshpack.c
930    - Address warnings produced by newer versions of gcc
931    - Future-proof: turn off -Werror
932
9332018-05-02
934
935    - [BUGFIX] Make lsquic_conn_quic_version() available
936    - Switch to using ls-hpack 1.1
937    - [BUGFIX] Do not ignore stream resets after receiving FIN
938
9392018-04-27
940
941    - HPACK: do not allow header block to end with table size update.
942
9432018-04-25
944
945    - [BUGFIX] Do not create gap in sent packnos when squeezing delayed
946      packets.
947    - [BUGFIX] sendctl checks for all unacked bytes, not just retx bytes.
948    - [BUGFIX] connections with blocked scheduled packets are not tickable
949      for sending.
950    - [BUGFIX] Conn is tickable if it wants to send a connection-level
951      frame.
952
9532018-04-23
954
955    - Fix busy loop: tickable must make progress.  When connection is
956      self-reporting as tickable, it must make progress when ticked.  There
957      are two issues:
958        1. If there are buffered packets, the connection is only tickable if
959           they can be sent out.
960        2. A connection is tickable if there are streams on the servicing
961           queue.  When the tick occurs, we must service the stream
962           independent of whether any packets are sent.
963    - Fix assertion in pacer which can be incorrect under some
964      conditions.
965    - cmake: do not turn on address sanitizer if in Travis.
966
9672018-04-20
968
969    - [BUGFIX] Fix bug in lsquic_engine_connect() exposed by yesterday's
970      changes.
971
9722018-04-19
973
974    - [BUGFIX] Add connection to Tickable Queue on stream write
975    - cmake: use MSVC variable instead of trying to detect
976    - engine: improve connection incref/decref logging
977    - stream: don't ignore errors that may occur on triggered flush
978    - connection: remove obsolete method
979    - engine: indicate connection as tickable if previous call went
980      over threshold
981
9822018-04-09
983
984    [API Change, OPTIMIZATION] Only process conns that need to be processed
985
986    The API is simplified: do not expose the user code to several
987    queues.  A "connection queue" is now an internal concept.
988    The user processes connections using the single function
989    lsquic_engine_process_conns().  When this function is called,
990    only those connections are processed that need to be processed.
991    A connection needs to be processed when:
992
993        1. New incoming packets have been fed to the connection.
994        2. User wants to read from a stream that is readable.
995        3. User wants to write to a stream that is writeable.
996        4. There are buffered packets that can be sent out.  (This
997           means that the user wrote to a stream outside of the
998           lsquic library callback.)
999        5. A control frame (such as BLOCKED) needs to be sent out.
1000        6. A stream needs to be serviced or delayed stream needs to
1001           be created.
1002        7. An alarm rings.
1003        8. Pacer timer expires.
1004
1005    To achieve this, the library places the connections into two
1006    priority queues (min heaps):
1007
1008        1. Tickable Queue; and
1009        2. Advisory Tick Time queue (ATTQ).
1010
1011    Each time lsquic_engine_process_conns() is called, the Tickable
1012    Queue is emptied.  After the connections have been ticked, they are
1013    queried again: if a connection is not being closed, it is placed
1014    either in the Tickable Queue if it is ready to be ticked again or
1015    it is placed in the Advisory Tick Time Queue.  It is assumed that
1016    a connection always has at least one timer set (the idle alarm).
1017
1018    The connections in the Tickable Queue are arranged in the least
1019    recently ticked order.  This lets connections that have been quiet
1020    longer to get their packets scheduled first.
1021
1022    This change means that the library no longer needs to be ticked
1023    periodically.  The user code can query the library when is the
1024    next tick event and schedule it exactly.  When connections are
1025    processed, only the tickable connections are processed, not *all*
1026    the connections.  When there are no tick events, it means that no
1027    timer event is necessary -- only the file descriptor READ event
1028    is active.
1029
1030    The following are improvements and simplifications that have
1031    been triggered:
1032
1033        - Queue of connections with incoming packets is gone.
1034        - "Pending Read/Write Events" Queue is gone (along with its
1035          history and progress checks).  This queue has become the
1036          Tickable Queue.
1037        - The connection hash no longer needs to track the connection
1038          insertion order.
1039
10402018-04-02
1041
1042    - [FEATURE] Windows support
1043
1044    - Reduce stack use -- outgoing packet batch is now allocated on the heap.
1045
10462018-03-09
1047
1048    - [OPTIMIZATION] Merge series of ACKs if possible
1049
1050      Parsed single-range ACK frames (that is the majority of frames) are
1051      saved in the connection and their processing is deferred until the
1052      connection is ticked.  If several ACKs come in a series between
1053      adjacent ticks, we check whether the latest ACK is a strict superset
1054      of the saved ACK.  If it is, the older ACK is not processed.
1055
1056      If ACK frames can be merged, they are merged and only one of them is
1057      either processed or saved.
1058
1059    - [OPTIMIZATION] Speed up ACK verification by simplifying send history.
1060
1061      Never generate a gap in the sent packet number sequence.  This reduces
1062      the send history to a single number instead of potentially a series of
1063      packet ranges and thereby speeds up ACK verification.
1064
1065      By default, detecting a gap in the send history is not fatal: only a
1066      single warning is generated per connection.  The connection can continue
1067      to operate even if the ACK verification code is not able to detect some
1068      inconsistencies.
1069
1070    - [OPTIMIZATION] Rearrange the lsquic_send_ctl struct
1071
1072      The first part of struct lsquic_send_ctl now consists of members that
1073      are used in lsquic_send_ctl_got_ack() (in the absense of packet loss,
1074      which is the normal case).  To speed up reads and writes, we no longer
1075      try to save space by using 8- and 16-bit integers.  Use regular integer
1076      width for everything.
1077
1078    - [OPTIMIZATION] Cache size of sent packet.
1079
1080    - [OPTIMIZATION] Keep track of the largest ACKed in packet_out
1081
1082      Instead of parsing our own ACK frames when packet has been acked,
1083      use the value saved in the packet_out structure when the ACK frame
1084      was generated.
1085
1086    - [OPTIMIZATION] Take RTT sampling conditional out of ACK loop
1087
1088    - [OPTIMIZATION] ACK processing: only call clock_gettime() if needed
1089
1090    - [OPTIMIZATION] Several code-level optimizations to ACK processing.
1091
1092    - Fix: http_client: fix -I flag; switch assert() to abort()
1093
10942018-02-26
1095    - [API Change] lsquic_engine_connect() returns pointer to the connection
1096      object.
1097    - [API Change] Add lsquic_conn_get_engine() to get engine object from
1098      connection object.
1099    - [API Change] Add lsquic_conn_status() to query connection status.
1100    - [API Change] Add add lsquic_conn_set_ctx().
1101    - [API Change] Add new timestamp format, e.g. 2017-03-21 13:43:46.671345
1102    - [OPTIMIZATION] Process handshake STREAM frames as soon as packet
1103      arrives.
1104    - [OPTIMIZATION] Do not compile expensive send controller sanity check
1105      by default.
1106    - [OPTIMIZATION] Add fast path to gquic_be_gen_reg_pkt_header.
1107    - [OPTIMIZATION] Only make squeeze function call if necessary.
1108    - [OPTIMIZATION] Speed up Q039 ACK frame parsing.
1109    - [OPTIMIZATION] Fit most used elements of packet_out into first 64 bytes.
1110    - [OPTIMIZATION] Keep track of scheduled bytes instead of calculating.
1111    - [OPTIMIZATION] Prefetch next unacked packet when processing ACK.
1112    - [OPTIMIZATION] Leverage fact that ACK ranges and unacked list are.
1113      ordered.
1114    - [OPTIMIZATION] Reduce function pointer use for STREAM frame generation
1115    - Fix: reset incoming streams that arrive after we send GOAWAY.
1116    - Fix: delay client on_new_conn() call until connection is fully set up.
1117    - Fixes to buffered packets logic: splitting, STREAM frame elision.
1118    - Fix: do not dispatch on_write callback if no packets are available.
1119    - Fix WINDOW_UPDATE send and resend logic.
1120    - Fix STREAM frame extension code.
1121    - Fix: Drop unflushed data when stream is reset.
1122    - Switch to tracking CWND using bytes rather than packets.
1123    - Fix TCP friendly adjustment in cubic.
1124    - Fix: do not generate invalid STOP_WAITING frames during high packet
1125      loss.
1126    - Pacer fixes.
1127
11282017-12-18
1129
1130    - Fix: better follow cubic curve after idle period
1131    - Fix: add missing parts to outgoing packet splitting code
1132    - Fix: compilation using gcc 4.8.4
1133
11342017-10-31
1135
1136    - Add APIs.txt -- describes LSQUIC APIs
1137
11382017-10-31
1139
1140    - [API Change] Sendfile-like functionality is gone.  The stream no
1141      longer opens files and deals with file descriptors.  (Among other
1142      things, this makes the code more portable.)  Three writing functions
1143      are provided:
1144
1145        lsquic_stream_write
1146        lsquic_stream_writev
1147        lsquic_stream_writef    (NEW)
1148
1149      lsquic_stream_writef() is given an abstract reader that has function
1150      pointers for size() and read() functions which the user can implement.
1151      This is the most flexible way.  lsquic_stream_write() and
1152      lsquic_stream_writev() are now both implemented as wrappers around
1153      lsquic_stream_writef().
1154
1155    - [OPTIMIZATION] When writing to stream, be it within or without the
1156      on_write() callback, place data directly into packet buffer,
1157      bypassing auxiliary data structures.  This reduces amount of memory
1158      required, for the amount of data that can be written is limited
1159      by the congestion window.
1160
1161      To support writes outside the on_write() callback, we keep N
1162      outgoing packet buffers per connection which can be written to
1163      by any stream.  One half of these are reserved for the highest
1164      priority stream(s), the other half for all other streams.  This way,
1165      low-priority streams cannot write instead of high-priority streams
1166      and, on the other hand, low-priority streams get a chance to send
1167      their packets out.
1168
1169      The algorithm is as follows:
1170
1171      - When user writes to stream outside of the callback:
1172        - If this is the highest priority stream, place it onto the
1173          reserved N/2 queue or fail.
1174            (The actual size of this queue is dynamic -- MAX(N/2, CWND) --
1175             rather than N/2, allowing high-priority streams to write as
1176             much as can be sent.)
1177        - If the stream is not the highest priority, try to place the
1178          data onto the reserved N/2 queue or fail.
1179      - When tick occurs *and* more packets can be scheduled:
1180        - Transfer packets from the high N/2 queue to the scheduled
1181          queue.
1182        - If more scheduling is allowed:
1183          - Call on_write callbacks for highest-priority streams,
1184            placing resulting packets directly onto the scheduled queue.
1185        - If more scheduling is allowed:
1186          - Transfer packets from the low N/2 queue to the scheduled
1187            queue.
1188        - If more scheduling is allowed:
1189          - Call on_write callbacks for non-highest-priority streams,
1190            placing resulting packets directly onto the scheduled queue
1191
1192      The number N is currently 20, but it could be varied based on
1193      resource usage.
1194
1195    - If stream is created due to incoming headers, make headers readable
1196      from on_new.
1197
1198    - Outgoing packets are no longer marked non-writeable to prevent placing
1199      more than one STREAM frame from the same stream into a single packet.
1200      This property is maintained via code flow and an explicit check.
1201      Packets for stream data are allocated using a special function.
1202
1203    - STREAM frame elision is cheaper, as we only perform it if a reset
1204      stream has outgoing packets referencing it.
1205
1206    - lsquic_packet_out_t is smaller, as stream_rec elements are now
1207      inside a union.
1208
12092017-10-12
1210
1211    - Do not send RST_STREAM when stream is closed for reading
1212    - Raise maximum header size from 4K to 64K
1213    - Check header name and value lengths against maximum imposed by HPACK
1214    - Fix NULL dereference in stream flow controller
1215
12162017-10-09
1217
1218    - Hide handshake implementation behind a set of function pointers
1219    - Use monotonically increasing clock
1220    - Make sure that retx delay is not larger than the max of 60 seconds
1221
12222017-09-29
1223
1224    - A few fixes to code and README
1225
12262017-09-28
1227
1228    - Add support for Q041; drop support for Q040
1229
12302017-09-27
1231
1232    - Fix CMakeLists.txt: BoringSSL include and lib was mixed up
1233
12342017-09-26
1235
1236    - Add support for Mac OS
1237    - Add support for Raspberry Pi
1238    - Fix BoringSSL compilation: include <openssl/hmac.h> explicitly
1239
12402017-09-22
1241
1242    - Initial release
1243