Adding ConnectToFrame and Its y3 codec implement, The ConnectToFrame is used by server to notify client to connect a new endpoint.
// ConnectToFrame is is used by server notify client to connect to a new endpoint.
type ConnectToFrame struct {
// Endpoint is the new endpoint that will be connected by client.
Endpoint string
}
Description
Adding
ConnectToFrame
and Its y3 codec implement, TheConnectToFrame
is used by server to notify client to connect a new endpoint.