firedancer icon indicating copy to clipboard operation
firedancer copied to clipboard

quic: only service one conn in fd_quic_service

Open ripatel-fd opened this issue 4 months ago • 0 comments

Most fd_quic users run a main loop like so:

  for(;;) {
    fd_quic_service( ... );
    fd_quic_process_packet( ... );
  }

fd_quic_service's execution time is currently unbounded which can starve RX from cycles at high concurrent connection counts.

ripatel-fd avatar Oct 26 '24 19:10 ripatel-fd