Skip to content

Commit

Permalink
Remove Http3Client::process_input
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Sep 30, 2024
1 parent bf807b8 commit 760aade
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions neqo-http3/src/connection_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -883,22 +883,6 @@ impl Http3Client {
.map_datagram(Into::into)
}

/// The function should be called when there is a new UDP packet available. The function will
/// handle the packet payload.
///
/// First, the payload will be handled by the QUIC layer. Afterward, `process_http3` will be
/// called to handle new [`ConnectionEvent`][1]s.
///
/// After this function is called [`Http3Client::process`] should be called to check whether new
/// packets need to be sent or if a timer needs to be updated.
///
/// [1]: ../neqo_transport/enum.ConnectionEvent.html
pub fn process_input<'a>(&mut self, dgram: impl Into<Datagram<&'a [u8]>>, now: Instant) {
qtrace!([self], "Process input");
self.conn.process_input(dgram, now);
self.process_http3(now);
}

/// Process HTTP3 layer.
/// When [`Http3Client::process`], or [`Http3Client::process_input`] is
/// called we must call this function
Expand Down

0 comments on commit 760aade

Please sign in to comment.