UDP port re-use during flooding

This commit is contained in:
Aram 🍐 2021-10-26 00:03:44 -04:00
parent d975efefaf
commit faf157cfeb
3 changed files with 104 additions and 10 deletions

27
Cargo.lock generated
View file

@ -374,6 +374,12 @@ version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7"
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
[[package]]
name = "hermit-abi"
version = "0.1.19"
@ -398,6 +404,16 @@ dependencies = [
"quick-error",
]
[[package]]
name = "indexmap"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "instant"
version = "0.1.11"
@ -615,6 +631,7 @@ dependencies = [
"log",
"nom",
"pretty_env_logger",
"priority-queue",
"rand",
"smoltcp",
"tokio",
@ -674,6 +691,16 @@ dependencies = [
"log",
]
[[package]]
name = "priority-queue"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf40e51ccefb72d42720609e1d3c518de8b5800d723a09358d4a6d6245e1f8ca"
dependencies = [
"autocfg",
"indexmap",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.19"