58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
// Package tethering provides the Chrome Debugging Protocol
|
|
// commands, types, and events for the Tethering domain.
|
|
//
|
|
// The Tethering domain defines methods and events for browser port binding.
|
|
//
|
|
// Generated by the chromedp-gen command.
|
|
package tethering
|
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
|
|
|
import (
|
|
"context"
|
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
|
)
|
|
|
|
// BindParams request browser port binding.
|
|
type BindParams struct {
|
|
Port int64 `json:"port"` // Port number to bind.
|
|
}
|
|
|
|
// Bind request browser port binding.
|
|
//
|
|
// parameters:
|
|
// port - Port number to bind.
|
|
func Bind(port int64) *BindParams {
|
|
return &BindParams{
|
|
Port: port,
|
|
}
|
|
}
|
|
|
|
// Do executes Tethering.bind against the provided context and
|
|
// target handler.
|
|
func (p *BindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
|
return h.Execute(ctxt, cdp.CommandTetheringBind, p, nil)
|
|
}
|
|
|
|
// UnbindParams request browser port unbinding.
|
|
type UnbindParams struct {
|
|
Port int64 `json:"port"` // Port number to unbind.
|
|
}
|
|
|
|
// Unbind request browser port unbinding.
|
|
//
|
|
// parameters:
|
|
// port - Port number to unbind.
|
|
func Unbind(port int64) *UnbindParams {
|
|
return &UnbindParams{
|
|
Port: port,
|
|
}
|
|
}
|
|
|
|
// Do executes Tethering.unbind against the provided context and
|
|
// target handler.
|
|
func (p *UnbindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
|
return h.Execute(ctxt, cdp.CommandTetheringUnbind, p, nil)
|
|
}
|