Documentation
¶
Overview ¶
Package tethering provides the Chrome DevTools Protocol commands, types, and events for the Tethering domain.
The Tethering domain defines methods and events for browser port binding.
Generated by the cdproto-gen command.
Index ¶
Constants ¶
const ( CommandBind = "Tethering.bind" CommandUnbind = "Tethering.unbind" )
Command names.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BindParams ¶
type BindParams struct {
Port int64 `json:"port"` // Port number to bind.
}
BindParams request browser port binding.
func Bind ¶
func Bind(port int64) *BindParams
Bind request browser port binding.
See: https://chromedevtools.github.io/devtools-protocol/tot/Tethering#method-bind
parameters:
port - Port number to bind.
type EventAccepted ¶
type EventAccepted struct { Port int64 `json:"port"` // Port number that was successfully bound. ConnectionID string `json:"connectionId"` // Connection id to be used. }
EventAccepted informs that port was successfully bound and got a specified connection id.
See: https://chromedevtools.github.io/devtools-protocol/tot/Tethering#event-accepted
type UnbindParams ¶
type UnbindParams struct {
Port int64 `json:"port"` // Port number to unbind.
}
UnbindParams request browser port unbinding.
func Unbind ¶
func Unbind(port int64) *UnbindParams
Unbind request browser port unbinding.
See: https://chromedevtools.github.io/devtools-protocol/tot/Tethering#method-unbind
parameters:
port - Port number to unbind.