Documentation ¶
Overview ¶
Package simplequicping is the experimental simplequicping experiment.
See https://github.com/ooni/spec/blob/master/nettests/ts-034-simplequicping.md.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewExperimentMeasurer ¶
func NewExperimentMeasurer(config Config) model.ExperimentMeasurer
NewExperimentMeasurer creates a new ExperimentMeasurer.
Types ¶
type Config ¶
type Config struct { // ALPN allows to specify which ALPN or ALPNs to send. ALPN string `ooni:"space separated list of ALPNs to use"` // Delay is the delay between each repetition (in milliseconds). Delay int64 `ooni:"number of milliseconds to wait before sending each ping"` // Repetitions is the number of repetitions for each ping. Repetitions int64 `ooni:"number of times to repeat the measurement"` // SNI is the SNI value to use. SNI string `ooni:"the SNI value to use"` }
Config contains the experiment configuration.
type Measurer ¶
type Measurer struct {
// contains filtered or unexported fields
}
Measurer performs the measurement.
func (*Measurer) ExperimentName ¶
ExperimentName implements ExperimentMeasurer.ExperiExperimentName.
func (*Measurer) ExperimentVersion ¶
ExperimentVersion implements ExperimentMeasurer.ExperimentVersion.
type SinglePing ¶
type SinglePing struct { NetworkEvents []*model.ArchivalNetworkEvent `json:"network_events"` QUICHandshake *model.ArchivalTLSOrQUICHandshakeResult `json:"quic_handshake"` }
SinglePing contains the results of a single ping.
type TestKeys ¶
type TestKeys struct {
Pings []*SinglePing `json:"pings"`
}
TestKeys contains the experiment results.
Click to show internal directories.
Click to hide internal directories.