From 87192a23f2b5e94a42b058d9b161ce606356c21a Mon Sep 17 00:00:00 2001 From: van Hauser Date: Sun, 20 Dec 2020 16:45:26 +0100 Subject: [PATCH] fix new_on_port_std --- afl/src/events/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afl/src/events/mod.rs b/afl/src/events/mod.rs index 86bd20f63d..163b6d9670 100644 --- a/afl/src/events/mod.rs +++ b/afl/src/events/mod.rs @@ -742,7 +742,7 @@ where /// Else, it will act as client. pub fn new_on_port_std(stats: ST) -> Result { Ok(Self { - llmp: llmp::LlmpConnection::on_port(port)?, + llmp: llmp::LlmpConnection::on_port(1337)?, stats: stats, phantom: PhantomData, })