mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
aquatic_http: update 'valid_until' for established connections
This commit is contained in:
parent
1dc2f44d9c
commit
3a8e5a3abf
2 changed files with 10 additions and 4 deletions
|
|
@ -171,8 +171,15 @@ pub fn run_handshakes_and_read_requests(
|
|||
valid_until: ValidUntil,
|
||||
){
|
||||
loop {
|
||||
let opt_established = connections.get_mut(&poll_token)
|
||||
.and_then(|c| c.inner.as_mut().left());
|
||||
let opt_connection = connections.get_mut(&poll_token);
|
||||
|
||||
let opt_established = if let Some(connection) = opt_connection {
|
||||
connection.valid_until = valid_until;
|
||||
|
||||
connection.inner.as_mut().left()
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
if let Some(established) = opt_established {
|
||||
match established.read_request(){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue