CHANGELOG revision 1245d2e0
12019-09-30
2    - 2.4.3
3    - Add GQUIC versions to the list of h3 ALPNs for Alt-Svc header.
4      For example, h3-Q043.  Chrome will switch to using this format at
5      some point in the future.
6    - [BUGFIX] Send correct value in max_streams_uni transport param
7    - [SPEC] Abort IETF QUIC connection if max_early_data_size is not set
8      to 0xFFFFFFFF
9
102019-09-23
11    - 2.4.2
12    - [BUGFIX] H3 framing: fix zero-byte write when space is available
13    - [BUGFIX] Don't send STREAM frame when incoming unidirectgional stream
14      is closed
15    - [BUGFIX] Cancel all pending writes by stream reset by a GOAWAY
16    - [BUGFIX] Fix use-after-free in IETF full conn
17    - [OPTIMIZATION] Wait for session tickets for two seconds and then drop
18      SSL object and crypto streams.
19
202019-09-18
21    - 2.4.0
22    - [FEATURE] QUIC and HTTP/3 Internet Draft 23 support
23
242019-09-13
25    - 2.3.1
26    - [BUGFIX] Fix memory leaks
27    - [BUGFIX] Fix unit tests
28
292019-09-12
30    - 2.3.0
31    - [FEATURE] BBR congestion control is on by default
32    - [BUGFIX] BBR app-limited logic
33    - [BUGFIX] Fix uninitialized warnings in IETF
34    - [BUGFIX] Update ls-qpack to v0.9.14
35    - [CLEANUP] Code cleanup
36
372019-09-11
38    - 2.2.0
39    - [FEATURE] Server code is included in the library
40    - [FEATURE] IETF QUIC and HTTP/3 Support (ID-22)
41
422019-05-13
43    - 1.21.2
44    - [OPTIMIZATION] HPACK: use history to improve compression performance
45
462019-05-06
47    - 1.21.1
48    - [BUGFIX] If FIN or RST not received, don't delay stream destruction.
49    - [OPTIMIZATION] Speed up HPACK encoder by using same hash value to
50      search static and dynamic tables.
51
522019-04-12
53    - 1.21.0
54    - [FEATURE] Add qlog log module.
55
562019-04-01
57    - 1.20.0
58    - [FEATURE] Add support for Q046.
59
602019-03-19
61    - 1.19.6
62    - [BUGFIX] Ensure that Largest Observed does not decrease in ACKs we
63      send.  ACK frames placed in packets in buffered queues (optimization
64      introduced in 1.17.15) can be preceded by an ACK frame generated later.
65      In this case, the older ACK frame should not be sent out, as Chromium-
66      based servers flags decrease in the ACK frame's Largest Observed value
67      as an error.
68
692019-03-05
70    - 1.19.5
71    - [BUGFIX] Use correct public key from PUBS based on KEXS index.
72    - [BUGFIX] Check flags before dispatching writes, avoiding assert.
73    - [BUGFIX] Set :scheme to "https" (instead of "HTTP").
74
752019-02-25
76    - 1.19.4
77    - [BUGFIX] Check buffer bounds when looking up version in 0-RTT blob.
78    - [BUGFIX] http_client: don't fetch 0-rtt info if handshake failed.
79    - Log number of pacer calls at DEBUG, rather than NOTICE, level.
80
812019-02-18
82    - 1.19.3
83    - [BUGFIX] Q044: don't encode packet number in 6 bytes.  Six-byte
84      packet number encoding does not exist in Q044.  This fixes a
85      regression introduced in '[BUGFIX] Buffered packets can contain
86      ACK frames' -- we need to keep QUIC version in mind when selecting
87      the longest possible packet number encoding used for the buffered
88      packet that carries the ACK.
89    - [BUGFIX] Do not increase CWND when timeout occurs.
90    - http_client: support setting handshake timeout on command line.
91      Use -o handshake_to=timeout.
92    - http_client: use -k to connect UDP socket to pick up ICMP errors.
93    - http_client: allow pathless mode, when only handshake is performed
94      without issuing any requests.  This can be done by simply not
95      specifying a -p flag on the command line.
96
972019-02-11
98    - 1.19.2
99    - [BUGFIX] Begin negotiation with version provided in 0-RTT info.
100    - [BUGFIX] Version checking in zero_rtt deserialize function.
101
1022019-02-04
103    - 1.19.1
104    - [BUGFIX] Fix Windows build.
105
1062019-02-04
107    - 1.19.0
108    - [FEATURE, API Change] 0-RTT support.  Add function to export 0-RTT
109      information; it can be supplied to a subsequent connect() call.
110    - [FEATURE] Add -0 flag to http_client to exercise 0-RTT support.
111    - [BUGFIX] Resuscitate the Windows build.
112    - [BUGFIX] Send HTTP settings (max header list size) if necessary.
113    - [BUGFIX] Buffered packets can contain ACK frames.
114    - [BUGFIX] Make packet writeable once all STREAM frames are elided.
115    - [BUGFIX] Fix potential null dereference when realloc fails.
116    - cmake: simplify build configuration.
117
1182019-01-28
119    - 1.18.0
120    - [API Change] Can specify clock granularity in engine settings.
121    - [BUGFIX] Pacer uses fixed clock granularity.  Since the change on
122      2018-04-09, it is not necessary to try to approximate the next tick
123      time in the pacer: it can use fix clock granularity specified by
124      the user.
125    - [BUGFIX] Do not tick constantly before handshake is done.
126    - [BUGFIX] Do not exit tick prematurely: reuse packet with ACK.  Even
127      if we cannot allocate *more* packets, we could still be able to write
128      to one already allocated.
129    - [BUGFIX] Do not schedule pacer if there are no lost packets.
130
1312019-01-17
132    - 1.17.15
133    - [BUGFIX] http_client: make sure only one read per on_read() callback
134      is performed in the header conversion bypass (-B) mode.
135    - http_client: with -E, assign random priority when stream is created.
136    - [OPTIMIZATION] On immediate write, place an ACK frame into the first
137      buffered packet if an ACK is queued.  This reduces the number of
138      standalone ACK packets.
139    - [OPTIMIZATION] Allow placing more than one STREAM frame from the same
140      stream into an outgoing packet.  This change minimizes the number of
141      buffered packets required to store several small HTTP messages by
142      virtue of allowing more than one STREAM frame from HEADERS stream in
143      the same packet.
144    - [OPTIMIZATION] Flush headers when writing to buffered packets.  This
145      causes the headers to be written to the same buffered packet queue,
146      thereby improving packet utilization, especially for small HTTP
147      messages.
148
1492019-01-16
150    - 1.17.14
151    - [FEATURE] http_client can now collect stats: time to connect, TTFB,
152      time to download, requests per seconds, and bandwidth.  See -t flag.
153    - [BUGFIX] http_client: -B, -K, and -r can be used at the same time.
154    - [BUGFIX] http_client: do not display cert chain before each request.
155      Now this is only done once per connection, if the handshake is
156      successful and -a option is given.
157    - [BUGFIX] Do not wait to dispatch on_close() after reading.  If a
158      stream is scheduled to be closed after on_read() callback returns,
159      close it immediately instead of waiting until the end of the tick.
160      If client creates new request from on_close() event, they will be
161      processed in the same tick instead of waiting for the next one.
162    - [BUGFIX] HEADERS stream is critical: always treat it with highest
163      priority.
164
1652019-01-10
166    - 1.17.12
167    - [FEATURE] http_client can now issue parallel requests in the context
168      of a single connection.  See -w option.
169
1702019-01-03
171    - 1.17.11
172    - Fix strict aliasing warning in optimized compilation.
173
1742018-12-27
175    - 1.17.10
176    - Fix the example program to be able to use parallel connections
177      again.  (See the -n argument.)
178
1792018-12-18
180    - 1.17.9
181    - [BUGFIX] Engine: reduce minimum batch size from 256 to 4
182
1832018-12-10
184    - 1.17.8
185    - [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux
186
1872018-12-03
188    - 1.17.7
189    - [BUGFIX] Do not unset PING alarm before ringing expired alarms.
190      This prevented PING from ever being sent.
191
1922018-11-29
193    - 1.17.6
194    - Add failsafe: resume sending packets after some time
195
196      The change puts a 1-second limit on the amount of time the engine
197      will not send packets after some packets are delayed.  This makes
198      the library robust in case the user does not unblock the engine
199      explicitly using lsquic_engine_send_unsent_packets() call.
200
201    - [BUGFIX] Handle corner cases in send controller when packets are
202      a) delayed or b) dropped during repackaging.
203    - [BUGFIX] Memory leak: destroy buffered packets during controller
204      cleanup.
205
2062018-11-16
207    - 1.17.3
208    - [BUGFIX] Do not send STOP_WAITING frames when using Q044
209
2102018-10-19
211    - 1.17.2
212    - [BUGFIX] Memory leak in test_frame_rw unit test.
213    - [BUGFIX] Parsing packets with short IETF header: do not overwrite
214      flags.  (Only a problem in unit tests -- benign otherwise.)
215
2162018-10-16
217    - 1.17.0
218    - [API Change] Packet out Memory Interface (PMI) update:
219      - Split PMI pool return into pmi_release and pmi_return
220      - PMI callbacks take peer_ctx and is_ipv6 arguments
221    - [BUGFIX] Fix use-after-free when certificate is updated
222    - Silence gcc warning in optimized mode by performing useless
223      initialization
224    - cmake: use the standard variable CMAKE_BUILD_TYPE instead of
225      DEVEL_MODE
226
2272018-10-03
228    - 1.16.0
229    - [API Change] Add lsquic_conn_n_avail_streams()
230    - [BUGFIX] only dispatch crypto stream read events if WANT_READ is on
231
2322018-09-27
233    - 1.15.0
234    - [API Change] Add LSCONN_ST_PEER_GOING_AWAY to the list of conn statuses
235    - [BUGFIX] free uncompressed headers correctly when error occurs
236
2372018-09-12
238    - 1.14.3
239    - [BUGFIX] Do not abort conn on STREAM frame for a reset stream
240    - [BUGFIX] Drop packets that would become empty due to repackaging.
241      Packets on the scheduled queue may be marked for repackaging.
242      Frames such as ACK frame that are never resent are removed from
243      repackaged packets.  We must check that the newly repackaged packet
244      would not be empty.  If it would be, it is destroyed instead and
245      the next packet on the scheduled queue is used.  Note that this
246      change only affects the logic to return the next packet to be sent.
247      Lost packets that are being rescheduled are already processed in
248      this fashion.
249    - Byteswap CID before logging it - this makes it match Chrome CIDs.
250      (Except Q035, which is the last little-endian GQUIC version we
251      support.)
252
2532018-09-06
254    - 1.14.0
255    - [API Change] Disable packet sending if full batch cannot be sent
256      If lsquic_packets_out_f() cannot send the whole batch, disable
257      packet sending until lsquic_engine_send_unsent_packets() is called.
258    - [BUGFIX] Handle case when STREAM frame does not fit.
259    - [BUGFIX] Always allow incoming STREAM frames to overlap.  Peers
260      may send overlapping STREAM frames even if using versions older
261      than Q043.
262    - Custom header set fixes:
263      - set "FIN reached" flag when custom header with FIN flag is
264        claimed;
265      - do not return custom header set for a reset stream.
266
2672018-08-27
268
269    - 1.13.0
270    - [FEATURE, API Change] Add ability to create custom header set
271      objects via callbacks.  This avoids reading and re-parsing
272      headers from the stream.
273
2742018-08-27
275
276    - 1.12.4
277    - Fix memory leak when engine is destroyed
278    - Fix memory leak in http_client
279    - Fix gcc warning in unit tests
280
2812018-08-22
282
283    - 1.12.3
284    - [BUGFIX] Fix duplicate STREAM frame detection
285
2862018-08-20
287
288    - 1.12.2
289    - [BUGFIX] Update count of scheduled bytes when adjusting size of
290      an already-scheduled packet.
291    - Emit info instead of warning messages when stream is used in
292      unexpected ways.
293
2942018-08-17
295
296    - 1.12.0
297    - [FEATURE, API Change] Add support for certificate verification
298
2992018-08-16
300
301    - 1.11.1
302    - [BUGFIX] Fix STOP_WAITING frame processing in the new Q044 code
303
3042018-08-15
305
306    - 1.11.0
307    - [FEATURE] Add support for Q044.
308
3092018-08-09
310
311    - 1.10.2
312    - [BUGFIX] Don't go over limit when creating delayed streams
313
3142018-07-10
315
316    - 1.10.1
317    - [BUGFIX]  process connections after each batch of packets is read
318      This avoids a problem of accumulating a very large list of packets
319      (possible when speeds are high and socket's receive buffer is large)
320      and processing it all at once.
321    - If glibc is older than 2.17, link with rt.  This is necessary for
322      clock_getres(2).
323    - Add version macros to lsquic.h; remove unnecessary includes.
324
3252018-06-13
326
327    - [BUGFIX] allow multiple parallel connections by default
328
329      Use the original method of tracking connections by CIDs by default.
330      If zero-sized CID support is turned on, connections are tracked by
331      the address.  A new connection is not created if another connection
332      is using the same network address
333
3342018-05-30
335
336    - [FEATURE, API CHANGE] Support zero-sized CIDs in received packets
337
3382018-05-24
339
340    - Close connection properly when packet encryption fails
341
3422018-05-23
343
344    - [BUGFIX] Do not produce packet sequence gaps due to delayed packets
345
3462018-05-21
347
348    - [API Change] Add optional callback to call when handshake is done
349    - [API Change, BUGFIX] After send failure, wait until transport available
350
3512018-05-18
352
353    - [API] Expose useful lsquic_ver2str[] in lsquic.h
354    - [BUGFIX] Do not produce packet sequence gaps due to STREAM frame elision
355    - Improve checks of number of incoming streams limit and associated
356      error reporting.
357    - [BUGFIX] Command-line option `-6` now works correctly.
358
3592018-05-16
360
361    - [FEATURE] DNS resolution
362    - [BUGFIX] Frame insertion mis-ID as overlap instead of dup
363    - http_client: fix priority range generated by -E flag
364
3652018-05-09
366
367    - [FEATURE] Add support for Q043.
368    - Support for versions Q037, Q038, Q041, and Q042 has been removed.
369    - Fix typo in debug message.
370    - Fix code indentation.
371    - Add /* fallthru */ comment to stop newer gcc from complaining.
372    - Logger: fix compilation of optimized Windows build.
373
3742018-05-04
375
376    - [FEATURE] Add support for Q042.
377    - Remove comment: MSPC is obsolete (no code changes)
378    - Prog: use lsquic_str2ver() when processing -o version flag
379    - Remove unused CTIM and SRBF transport parameters
380    - Disable QUIC versions Q037 and Q038 by default
381    - Fix Windows compilation by including compat header file in
382      lshpack.c
383    - Address warnings produced by newer versions of gcc
384    - Future-proof: turn off -Werror
385
3862018-05-02
387
388    - [BUGFIX] Make lsquic_conn_quic_version() available
389    - Switch to using ls-hpack 1.1
390    - [BUGFIX] Do not ignore stream resets after receiving FIN
391
3922018-04-27
393
394    - HPACK: do not allow header block to end with table size update.
395
3962018-04-25
397
398    - [BUGFIX] Do not create gap in sent packnos when squeezing delayed
399      packets.
400    - [BUGFIX] sendctl checks for all unacked bytes, not just retx bytes.
401    - [BUGFIX] connections with blocked scheduled packets are not tickable
402      for sending.
403    - [BUGFIX] Conn is tickable if it wants to send a connection-level
404      frame.
405
4062018-04-23
407
408    - Fix busy loop: tickable must make progress.  When connection is
409      self-reporting as tickable, it must make progress when ticked.  There
410      are two issues:
411        1. If there are buffered packets, the connection is only tickable if
412           they can be sent out.
413        2. A connection is tickable if there are streams on the servicing
414           queue.  When the tick occurs, we must service the stream
415           independent of whether any packets are sent.
416    - Fix assertion in pacer which can be incorrect under some
417      conditions.
418    - cmake: do not turn on address sanitizer if in Travis.
419
4202018-04-20
421
422    - [BUGFIX] Fix bug in lsquic_engine_connect() exposed by yesterday's
423      changes.
424
4252018-04-19
426
427    - [BUGFIX] Add connection to Tickable Queue on stream write
428    - cmake: use MSVC variable instead of trying to detect
429    - engine: improve connection incref/decref logging
430    - stream: don't ignore errors that may occur on triggered flush
431    - connection: remove obsolete method
432    - engine: indicate connection as tickable if previous call went
433      over threshold
434
4352018-04-09
436
437    [API Change, OPTIMIZATION] Only process conns that need to be processed
438
439    The API is simplified: do not expose the user code to several
440    queues.  A "connection queue" is now an internal concept.
441    The user processes connections using the single function
442    lsquic_engine_process_conns().  When this function is called,
443    only those connections are processed that need to be processed.
444    A connection needs to be processed when:
445
446        1. New incoming packets have been fed to the connection.
447        2. User wants to read from a stream that is readable.
448        3. User wants to write to a stream that is writeable.
449        4. There are buffered packets that can be sent out.  (This
450           means that the user wrote to a stream outside of the
451           lsquic library callback.)
452        5. A control frame (such as BLOCKED) needs to be sent out.
453        6. A stream needs to be serviced or delayed stream needs to
454           be created.
455        7. An alarm rings.
456        8. Pacer timer expires.
457
458    To achieve this, the library places the connections into two
459    priority queues (min heaps):
460
461        1. Tickable Queue; and
462        2. Advisory Tick Time queue (ATTQ).
463
464    Each time lsquic_engine_process_conns() is called, the Tickable
465    Queue is emptied.  After the connections have been ticked, they are
466    queried again: if a connection is not being closed, it is placed
467    either in the Tickable Queue if it is ready to be ticked again or
468    it is placed in the Advisory Tick Time Queue.  It is assumed that
469    a connection always has at least one timer set (the idle alarm).
470
471    The connections in the Tickable Queue are arranged in the least
472    recently ticked order.  This lets connections that have been quiet
473    longer to get their packets scheduled first.
474
475    This change means that the library no longer needs to be ticked
476    periodically.  The user code can query the library when is the
477    next tick event and schedule it exactly.  When connections are
478    processed, only the tickable connections are processed, not *all*
479    the connections.  When there are no tick events, it means that no
480    timer event is necessary -- only the file descriptor READ event
481    is active.
482
483    The following are improvements and simplifications that have
484    been triggered:
485
486        - Queue of connections with incoming packets is gone.
487        - "Pending Read/Write Events" Queue is gone (along with its
488          history and progress checks).  This queue has become the
489          Tickable Queue.
490        - The connection hash no longer needs to track the connection
491          insertion order.
492
4932018-04-02
494
495    - [FEATURE] Windows support
496
497    - Reduce stack use -- outgoing packet batch is now allocated on the heap.
498
4992018-03-09
500
501    - [OPTIMIZATION] Merge series of ACKs if possible
502
503      Parsed single-range ACK frames (that is the majority of frames) are
504      saved in the connection and their processing is deferred until the
505      connection is ticked.  If several ACKs come in a series between
506      adjacent ticks, we check whether the latest ACK is a strict superset
507      of the saved ACK.  If it is, the older ACK is not processed.
508
509      If ACK frames can be merged, they are merged and only one of them is
510      either processed or saved.
511
512    - [OPTIMIZATION] Speed up ACK verification by simplifying send history.
513
514      Never generate a gap in the sent packet number sequence.  This reduces
515      the send history to a single number instead of potentially a series of
516      packet ranges and thereby speeds up ACK verification.
517
518      By default, detecting a gap in the send history is not fatal: only a
519      single warning is generated per connection.  The connection can continue
520      to operate even if the ACK verification code is not able to detect some
521      inconsistencies.
522
523    - [OPTIMIZATION] Rearrange the lsquic_send_ctl struct
524
525      The first part of struct lsquic_send_ctl now consists of members that
526      are used in lsquic_send_ctl_got_ack() (in the absense of packet loss,
527      which is the normal case).  To speed up reads and writes, we no longer
528      try to save space by using 8- and 16-bit integers.  Use regular integer
529      width for everything.
530
531    - [OPTIMIZATION] Cache size of sent packet.
532
533    - [OPTIMIZATION] Keep track of the largest ACKed in packet_out
534
535      Instead of parsing our own ACK frames when packet has been acked,
536      use the value saved in the packet_out structure when the ACK frame
537      was generated.
538
539    - [OPTIMIZATION] Take RTT sampling conditional out of ACK loop
540
541    - [OPTIMIZATION] ACK processing: only call clock_gettime() if needed
542
543    - [OPTIMIZATION] Several code-level optimizations to ACK processing.
544
545    - Fix: http_client: fix -I flag; switch assert() to abort()
546
5472018-02-26
548    - [API Change] lsquic_engine_connect() returns pointer to the connection
549      object.
550    - [API Change] Add lsquic_conn_get_engine() to get engine object from
551      connection object.
552    - [API Change] Add lsquic_conn_status() to query connection status.
553    - [API Change] Add add lsquic_conn_set_ctx().
554    - [API Change] Add new timestamp format, e.g. 2017-03-21 13:43:46.671345
555    - [OPTIMIZATION] Process handshake STREAM frames as soon as packet
556      arrives.
557    - [OPTIMIZATION] Do not compile expensive send controller sanity check
558      by default.
559    - [OPTIMIZATION] Add fast path to gquic_be_gen_reg_pkt_header.
560    - [OPTIMIZATION] Only make squeeze function call if necessary.
561    - [OPTIMIZATION] Speed up Q039 ACK frame parsing.
562    - [OPTIMIZATION] Fit most used elements of packet_out into first 64 bytes.
563    - [OPTIMIZATION] Keep track of scheduled bytes instead of calculating.
564    - [OPTIMIZATION] Prefetch next unacked packet when processing ACK.
565    - [OPTIMIZATION] Leverage fact that ACK ranges and unacked list are.
566      ordered.
567    - [OPTIMIZATION] Reduce function pointer use for STREAM frame generation
568    - Fix: reset incoming streams that arrive after we send GOAWAY.
569    - Fix: delay client on_new_conn() call until connection is fully set up.
570    - Fixes to buffered packets logic: splitting, STREAM frame elision.
571    - Fix: do not dispatch on_write callback if no packets are available.
572    - Fix WINDOW_UPDATE send and resend logic.
573    - Fix STREAM frame extension code.
574    - Fix: Drop unflushed data when stream is reset.
575    - Switch to tracking CWND using bytes rather than packets.
576    - Fix TCP friendly adjustment in cubic.
577    - Fix: do not generate invalid STOP_WAITING frames during high packet
578      loss.
579    - Pacer fixes.
580
5812017-12-18
582
583    - Fix: better follow cubic curve after idle period
584    - Fix: add missing parts to outgoing packet splitting code
585    - Fix: compilation using gcc 4.8.4
586
5872017-10-31
588
589    - Add APIs.txt -- describes LSQUIC APIs
590
5912017-10-31
592
593    - [API Change] Sendfile-like functionality is gone.  The stream no
594      longer opens files and deals with file descriptors.  (Among other
595      things, this makes the code more portable.)  Three writing functions
596      are provided:
597
598        lsquic_stream_write
599        lsquic_stream_writev
600        lsquic_stream_writef    (NEW)
601
602      lsquic_stream_writef() is given an abstract reader that has function
603      pointers for size() and read() functions which the user can implement.
604      This is the most flexible way.  lsquic_stream_write() and
605      lsquic_stream_writev() are now both implemented as wrappers around
606      lsquic_stream_writef().
607
608    - [OPTIMIZATION] When writing to stream, be it within or without the
609      on_write() callback, place data directly into packet buffer,
610      bypassing auxiliary data structures.  This reduces amount of memory
611      required, for the amount of data that can be written is limited
612      by the congestion window.
613
614      To support writes outside the on_write() callback, we keep N
615      outgoing packet buffers per connection which can be written to
616      by any stream.  One half of these are reserved for the highest
617      priority stream(s), the other half for all other streams.  This way,
618      low-priority streams cannot write instead of high-priority streams
619      and, on the other hand, low-priority streams get a chance to send
620      their packets out.
621
622      The algorithm is as follows:
623
624      - When user writes to stream outside of the callback:
625        - If this is the highest priority stream, place it onto the
626          reserved N/2 queue or fail.
627            (The actual size of this queue is dynamic -- MAX(N/2, CWND) --
628             rather than N/2, allowing high-priority streams to write as
629             much as can be sent.)
630        - If the stream is not the highest priority, try to place the
631          data onto the reserved N/2 queue or fail.
632      - When tick occurs *and* more packets can be scheduled:
633        - Transfer packets from the high N/2 queue to the scheduled
634          queue.
635        - If more scheduling is allowed:
636          - Call on_write callbacks for highest-priority streams,
637            placing resulting packets directly onto the scheduled queue.
638        - If more scheduling is allowed:
639          - Transfer packets from the low N/2 queue to the scheduled
640            queue.
641        - If more scheduling is allowed:
642          - Call on_write callbacks for non-highest-priority streams,
643            placing resulting packets directly onto the scheduled queue
644
645      The number N is currently 20, but it could be varied based on
646      resource usage.
647
648    - If stream is created due to incoming headers, make headers readable
649      from on_new.
650
651    - Outgoing packets are no longer marked non-writeable to prevent placing
652      more than one STREAM frame from the same stream into a single packet.
653      This property is maintained via code flow and an explicit check.
654      Packets for stream data are allocated using a special function.
655
656    - STREAM frame elision is cheaper, as we only perform it if a reset
657      stream has outgoing packets referencing it.
658
659    - lsquic_packet_out_t is smaller, as stream_rec elements are now
660      inside a union.
661
6622017-10-12
663
664    - Do not send RST_STREAM when stream is closed for reading
665    - Raise maximum header size from 4K to 64K
666    - Check header name and value lengths against maximum imposed by HPACK
667    - Fix NULL dereference in stream flow controller
668
6692017-10-09
670
671    - Hide handshake implementation behind a set of function pointers
672    - Use monotonically increasing clock
673    - Make sure that retx delay is not larger than the max of 60 seconds
674
6752017-09-29
676
677    - A few fixes to code and README
678
6792017-09-28
680
681    - Add support for Q041; drop support for Q040
682
6832017-09-27
684
685    - Fix CMakeLists.txt: BoringSSL include and lib was mixed up
686
6872017-09-26
688
689    - Add support for Mac OS
690    - Add support for Raspberry Pi
691    - Fix BoringSSL compilation: include <openssl/hmac.h> explicitly
692
6932017-09-22
694
695    - Initial release
696