Documentation ¶
Overview ¶
Package protocol implements the Secure Connection protocol
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol ¶
Package protocol implements the Secure Connection protocol
Index ¶
- Constants
- type Interface
- type Protocol
- func (protocol *Protocol) Endpoint() nex.EndpointInterface
- func (protocol *Protocol) HandlePacket(packet nex.PacketInterface)
- func (protocol *Protocol) SetEndpoint(endpoint nex.EndpointInterface)
- func (protocol *Protocol) SetHandlerRegister(...)
- func (protocol *Protocol) SetHandlerRegisterEx(...)
- func (protocol *Protocol) SetHandlerReplaceURL(...)
- func (protocol *Protocol) SetHandlerRequestConnectionData(...)
- func (protocol *Protocol) SetHandlerRequestURLs(...)
- func (protocol *Protocol) SetHandlerSendReport(...)
- func (protocol *Protocol) SetHandlerTestConnectivity(...)
- func (protocol *Protocol) SetHandlerUpdateURLs(...)
Constants ¶
const ( // ProtocolID is the protocol ID for the Secure Connection protocol ProtocolID = 0xB // MethodRegister is the method ID for the method Register MethodRegister = 0x1 // MethodRequestConnectionData is the method ID for the method RequestConnectionData MethodRequestConnectionData = 0x2 // MethodRequestURLs is the method ID for the method RequestURLs MethodRequestURLs = 0x3 // MethodRegisterEx is the method ID for the method RegisterEx MethodRegisterEx = 0x4 // MethodTestConnectivity is the method ID for the method TestConnectivity MethodTestConnectivity = 0x5 // MethodUpdateURLs is the method ID for the method UpdateURLs MethodUpdateURLs = 0x6 // MethodReplaceURL is the method ID for the method ReplaceURL MethodReplaceURL = 0x7 // MethodSendReport is the method ID for the method SendReport MethodSendReport = 0x8 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface { Endpoint() nex.EndpointInterface SetEndpoint(endpoint nex.EndpointInterface) SetHandlerRegister(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error)) SetHandlerRequestConnectionData(handler func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error)) SetHandlerRequestURLs(handler func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error)) SetHandlerRegisterEx(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL], hCustomData *types.AnyDataHolder) (*nex.RMCMessage, *nex.Error)) SetHandlerTestConnectivity(handler func(err error, packet nex.PacketInterface, callID uint32) (*nex.RMCMessage, *nex.Error)) SetHandlerUpdateURLs(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error)) SetHandlerReplaceURL(handler func(err error, packet nex.PacketInterface, callID uint32, target *types.StationURL, url *types.StationURL) (*nex.RMCMessage, *nex.Error)) SetHandlerSendReport(handler func(err error, packet nex.PacketInterface, callID uint32, reportID *types.PrimitiveU32, reportData *types.QBuffer) (*nex.RMCMessage, *nex.Error)) }
Interface implements the methods present on the Secure Connection protocol struct
type Protocol ¶
type Protocol struct { Register func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error) RequestConnectionData func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error) RequestURLs func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error) RegisterEx func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL], hCustomData *types.AnyDataHolder) (*nex.RMCMessage, *nex.Error) TestConnectivity func(err error, packet nex.PacketInterface, callID uint32) (*nex.RMCMessage, *nex.Error) UpdateURLs func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error) ReplaceURL func(err error, packet nex.PacketInterface, callID uint32, target *types.StationURL, url *types.StationURL) (*nex.RMCMessage, *nex.Error) SendReport func(err error, packet nex.PacketInterface, callID uint32, reportID *types.PrimitiveU32, reportData *types.QBuffer) (*nex.RMCMessage, *nex.Error) Patches nex.ServiceProtocol PatchedMethods []uint32 // contains filtered or unexported fields }
Protocol stores all the RMC method handlers for the Secure Connection protocol and listens for requests
func NewProtocol ¶
func NewProtocol() *Protocol
NewProtocol returns a new Secure Connection protocol
func (*Protocol) Endpoint ¶
func (protocol *Protocol) Endpoint() nex.EndpointInterface
Endpoint returns the endpoint implementing the protocol
func (*Protocol) HandlePacket ¶
func (protocol *Protocol) HandlePacket(packet nex.PacketInterface)
HandlePacket sends the packet to the correct RMC method handler
func (*Protocol) SetEndpoint ¶
func (protocol *Protocol) SetEndpoint(endpoint nex.EndpointInterface)
SetEndpoint sets the endpoint implementing the protocol
func (*Protocol) SetHandlerRegister ¶
func (protocol *Protocol) SetHandlerRegister(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error))
SetHandlerRegister sets the handler for the Register method
func (*Protocol) SetHandlerRegisterEx ¶
func (protocol *Protocol) SetHandlerRegisterEx(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL], hCustomData *types.AnyDataHolder) (*nex.RMCMessage, *nex.Error))
SetHandlerRegisterEx sets the handler for the RegisterEx method
func (*Protocol) SetHandlerReplaceURL ¶
func (protocol *Protocol) SetHandlerReplaceURL(handler func(err error, packet nex.PacketInterface, callID uint32, target *types.StationURL, url *types.StationURL) (*nex.RMCMessage, *nex.Error))
SetHandlerReplaceURL sets the handler for the ReplaceURL method
func (*Protocol) SetHandlerRequestConnectionData ¶
func (protocol *Protocol) SetHandlerRequestConnectionData(handler func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error))
SetHandlerRequestConnectionData sets the handler for the RequestConnectionData method
func (*Protocol) SetHandlerRequestURLs ¶
func (protocol *Protocol) SetHandlerRequestURLs(handler func(err error, packet nex.PacketInterface, callID uint32, cidTarget *types.PrimitiveU32, pidTarget *types.PID) (*nex.RMCMessage, *nex.Error))
SetHandlerRequestURLs sets the handler for the RequestURLs method
func (*Protocol) SetHandlerSendReport ¶
func (protocol *Protocol) SetHandlerSendReport(handler func(err error, packet nex.PacketInterface, callID uint32, reportID *types.PrimitiveU32, reportData *types.QBuffer) (*nex.RMCMessage, *nex.Error))
SetHandlerSendReport sets the handler for the SendReport method
func (*Protocol) SetHandlerTestConnectivity ¶
func (protocol *Protocol) SetHandlerTestConnectivity(handler func(err error, packet nex.PacketInterface, callID uint32) (*nex.RMCMessage, *nex.Error))
SetHandlerTestConnectivity sets the handler for the TestConnectivity method
func (*Protocol) SetHandlerUpdateURLs ¶
func (protocol *Protocol) SetHandlerUpdateURLs(handler func(err error, packet nex.PacketInterface, callID uint32, vecMyURLs *types.List[*types.StationURL]) (*nex.RMCMessage, *nex.Error))
SetHandlerUpdateURLs sets the handler for the UpdateURLs method
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package protocol implements the Nintendo Badge Arcade Secure Connection protocol
|
Package protocol implements the Nintendo Badge Arcade Secure Connection protocol |