diff options
| author | Eskil Q <eskilq@kth.se> | 2021-01-07 12:41:43 +0100 |
|---|---|---|
| committer | Eskil Q <eskilq@kth.se> | 2021-01-07 12:41:43 +0100 |
| commit | 62d3e3d6bf3842a1aad28874a69992b0b880137e (patch) | |
| tree | 18ee2f8b569991d1d0e6b6248539f70da63a62d7 /mumd/src/network/udp.rs | |
| parent | ab407d694e5a8ce6f831f8a84fc32dbdf6685aac (diff) | |
| download | mum-62d3e3d6bf3842a1aad28874a69992b0b880137e.tar.gz | |
remove shutdown function on run_until
it wasn't used and there are other ways of accomplishing the same thing
Diffstat (limited to 'mumd/src/network/udp.rs')
| -rw-r--r-- | mumd/src/network/udp.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mumd/src/network/udp.rs b/mumd/src/network/udp.rs index 9dd6ed3..5f24b51 100644 --- a/mumd/src/network/udp.rs +++ b/mumd/src/network/udp.rs @@ -73,7 +73,6 @@ pub async fn handle( ), new_crypt_state(&mut crypt_state_receiver, sink, source), ).map(|_| ()), - || async {}, phase_watcher, ).await; @@ -217,7 +216,6 @@ async fn send_voice( sink.lock().await.send(sending).await.unwrap(); } }, - || async {}, phase_watcher.clone(), ).await; } |
