Results 236 comments of James Peach

```C 1098 uint32_t 1099 Http2ConnectionState::_get_configured_initial_window_size() const 1100 { 1101 ink_assert(this->session != nullptr); 1102 if (this->session->is_outbound()) { 1103 return Http2::initial_window_size_out; 1104 } else { 1105 uint32_t initial_window_size_in = Http2::initial_window_size_in; 1106 if...

`ink_release_assert` should be used for internal invariants (i.e. when you do something that never fails and you want to document that it never fails). If `ink_release_assert` ever fails, it ought...

> > it would be helpful to have the symbols declared in `include/ts` built into a separate .so file (or maybe files) for its definitions rather than having them all...

I see. IIUC, if you actually separate the API symbols into a different DSO, then all their dependencies would either need to be in that DSO, or resolved from the...

On Jun 13, 2020, at 3:43 AM, Andy Bursavich wrote:  I am interested in seeing HTTP/3 support... Should this be considered a separate issue? Yes, could you please file...