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. // TODO(control-plane): replace this scaffold with a protobuf-socket server // once Portal-Control Plane and Control Plane-Edge message contracts settle. type Endpoint struct { Listen string }