small fixes

This commit is contained in:
Quentin De Coninck 2020-07-06 14:48:36 +02:00
parent 35267c3743
commit cd0b9043ec

View File

@ -11,7 +11,7 @@ class PQUICParameter(RandomFileExperiment):
super(PQUICParameter, self).__init__(experiment_parameter_filename) super(PQUICParameter, self).__init__(experiment_parameter_filename)
self.default_parameters.update({ self.default_parameters.update({
PQUICParameter.PLUGINS: "", PQUICParameter.PLUGINS: "",
PQUICParameter.SIZE: 1024000, PQUICParameter.SIZE: 10240000,
}) })
@ -19,7 +19,7 @@ class PQUIC(RandomFileExperiment):
NAME = "pquic" NAME = "pquic"
PARAMETER_CLASS = PQUICParameter PARAMETER_CLASS = PQUICParameter
BIN = "~/picoquic/picoquicdemo" BIN = "~/pquic/picoquicdemo"
SERVER_LOG = "pquic_server.log" SERVER_LOG = "pquic_server.log"
CLIENT_LOG = "pquic_client.log" CLIENT_LOG = "pquic_client.log"