Release 1.16.0

- [API Change] Add lsquic_conn_n_avail_streams()
- [BUGFIX] only dispatch crypto stream read events if WANT_READ is on
This commit is contained in:
Dmitri Tikhonov 2018-10-03 10:32:26 -04:00
parent 0a19f39d64
commit 66f9afccd0
3 changed files with 23 additions and 3 deletions

View file

@ -24,7 +24,7 @@ extern "C" {
#endif
#define LSQUIC_MAJOR_VERSION 1
#define LSQUIC_MINOR_VERSION 15
#define LSQUIC_MINOR_VERSION 16
#define LSQUIC_PATCH_VERSION 0
/**
@ -668,6 +668,10 @@ lsquic_engine_send_unsent_packets (lsquic_engine_t *engine);
void
lsquic_engine_destroy (lsquic_engine_t *);
/** Return max allowed outbound streams less current outbound streams. */
unsigned
lsquic_conn_n_avail_streams (const lsquic_conn_t *);
void lsquic_conn_make_stream(lsquic_conn_t *);
/** Return number of delayed streams currently pending */