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