Documentation
¶
Overview ¶
Package dial provides the shared raw-QUIC MOQT client dial used by the demo and interop CLIs: one TLS/QUIC configuration, moqt:// URI support with the §3.1.4 AUTHORITY / PATH Setup Options, and the MOQT handshake. Keeping it in one place stops the per-binary copies from drifting (the interop client's copy had lost the AUTHORITY/PATH options entirely).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Options ¶
type Options struct {
// Implementation is the SETUP IMPLEMENTATION value ("name/version").
Implementation string
// ALPN is the NextProtos list offered; defaults to ["moqt-19"] (§3.1: the
// "moqt-NN" ALPN is the draft-version signal — draft-19 SETUP has no
// version field).
ALPN []string
// InsecureSkipVerify disables TLS certificate verification (dev/demo
// relays with self-signed certificates).
InsecureSkipVerify bool
// SessionOptions are appended to the options QUIC derives itself.
SessionOptions []session.Option
}
Options configures QUIC.
Click to show internal directories.
Click to hide internal directories.