12 lines
465 B
Go
12 lines
465 B
Go
package wire
|
|
|
|
// Protocol names the IOP standard communication layer. The current Edge-Node
|
|
// transport already uses common-proto-socket; Control Plane endpoints should
|
|
// extend that same wire protocol instead of introducing another RPC framework.
|
|
const Protocol = "protobuf-socket"
|
|
|
|
// Endpoint is the reserved Control Plane wire endpoint configuration,
|
|
// realized by PortalServer for Portal-Control Plane communication.
|
|
type Endpoint struct {
|
|
Listen string
|
|
}
|