chromedp/cdp/tethering/events.go

20 lines
515 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
package tethering
// AUTOGENERATED. DO NOT EDIT.
import (
2017-01-26 07:28:34 +00:00
cdp "github.com/knq/chromedp/cdp"
2017-01-24 15:09:23 +00:00
)
// EventAccepted informs that port was successfully bound and got a specified
// connection id.
type EventAccepted struct {
Port int64 `json:"port,omitempty"` // Port number that was successfully bound.
ConnectionID string `json:"connectionId,omitempty"` // Connection id to be used.
}
2017-01-26 07:28:34 +00:00
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventTetheringAccepted,
2017-01-24 15:09:23 +00:00
}