From cd0b9043ecda1b2b3227bb19b147cdab26438ef5 Mon Sep 17 00:00:00 2001 From: Quentin De Coninck Date: Mon, 6 Jul 2020 14:48:36 +0200 Subject: [PATCH] small fixes --- experiments/pquic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/experiments/pquic.py b/experiments/pquic.py index f26e7cc..52a4d22 100644 --- a/experiments/pquic.py +++ b/experiments/pquic.py @@ -11,7 +11,7 @@ class PQUICParameter(RandomFileExperiment): super(PQUICParameter, self).__init__(experiment_parameter_filename) self.default_parameters.update({ PQUICParameter.PLUGINS: "", - PQUICParameter.SIZE: 1024000, + PQUICParameter.SIZE: 10240000, }) @@ -19,7 +19,7 @@ class PQUIC(RandomFileExperiment): NAME = "pquic" PARAMETER_CLASS = PQUICParameter - BIN = "~/picoquic/picoquicdemo" + BIN = "~/pquic/picoquicdemo" SERVER_LOG = "pquic_server.log" CLIENT_LOG = "pquic_client.log"