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