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