You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 06_multipath_quic, client and server log files are generated. How do we generate qlog files for the same?
We tried to convert pcap to qlog but its not possible due to tls security key error.
Is there any other way to generate qlog files for the same?
The text was updated successfully, but these errors were encountered:
First you have to include in the plugins loaded two additional files: the generic plugins/qlog/qlog.plugin and the multipath-specific plugins/multipath/multipath_qlog.plugin. You can provide several plugins separated by a comma in a single description file, like
Second, you need to slightly change the minitopo project on which this Vagrant box relies on. In particular, you need to provide the -q output_file.qlog flag to pquic. To do this, this is likely you need to change the pquic.py file of minitopo. Specifically, you need to define a new parameter in the PQUICParameter class with a default empty value, and then modify the get_pquic_client_cmd and get_pquic_server_cmd to include this flag in the command when the name (let's say useQlog) is set to a given name. Note that you will need to provide different output names for the client and the server, otherwise they would write to the same file and possibly corrupt it.
Please feel free to submit such a PR to the minitopo repository and I would take a look to include this.
In the 06_multipath_quic, client and server log files are generated. How do we generate qlog files for the same?
We tried to convert pcap to qlog but its not possible due to tls security key error.
Is there any other way to generate qlog files for the same?
The text was updated successfully, but these errors were encountered: