Documentation
¶
Overview ¶
Package tethering provides type definitions for use with the Chrome Tethering protocol
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AcceptedEvent ¶
type AcceptedEvent struct { // Port number that was successfully bound. Port int `json:"port"` // Connection ID to be used. ConnectionID string `json:"connectionId"` // Error information related to this event Err error `json:"-"` }
AcceptedEvent represents Overlay.accepted event data.
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#event-accepted
type BindParams ¶
type BindParams struct { // Port number to bind. Port int `json:"port"` }
BindParams represents Tethering.bind parameters.
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-bind
type BindResult ¶
type BindResult struct { // Error information related to executing this method Err error `json:"-"` }
BindResult represents the result of calls to Tethering.bind.
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-bind
type UnbindParams ¶
type UnbindParams struct { // Port number to unbind. Port int `json:"port"` }
UnbindParams represents Tethering.unbind parameters.
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-unbind
type UnbindResult ¶
type UnbindResult struct { // Error information related to executing this method Err error `json:"-"` }
UnbindResult represents the result of calls to Tethering.unbind.
https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-unbind