123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- // ************************************************************
- // This file is automatically generated by genxdr. Do not edit.
- // ************************************************************
- package protocol
- import (
- "bytes"
- "io"
- "github.com/calmh/xdr"
- )
- /*
- header Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | magic |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | message Type |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | message Length |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct header {
- unsigned int magic;
- int messageType;
- int messageLength;
- }
- */
- func (o header) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.EncodeXDRInto(xw)
- }
- func (o header) MarshalXDR() ([]byte, error) {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o header) MustMarshalXDR() []byte {
- bs, err := o.MarshalXDR()
- if err != nil {
- panic(err)
- }
- return bs
- }
- func (o header) AppendXDR(bs []byte) ([]byte, error) {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- _, err := o.EncodeXDRInto(xw)
- return []byte(aw), err
- }
- func (o header) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- xw.WriteUint32(o.magic)
- xw.WriteUint32(uint32(o.messageType))
- xw.WriteUint32(uint32(o.messageLength))
- return xw.Tot(), xw.Error()
- }
- func (o *header) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.DecodeXDRFrom(xr)
- }
- func (o *header) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.DecodeXDRFrom(xr)
- }
- func (o *header) DecodeXDRFrom(xr *xdr.Reader) error {
- o.magic = xr.ReadUint32()
- o.messageType = int32(xr.ReadUint32())
- o.messageLength = int32(xr.ReadUint32())
- return xr.Error()
- }
- /*
- Ping Structure:
- (contains no fields)
- struct Ping {
- }
- */
- func (o Ping) EncodeXDR(w io.Writer) (int, error) {
- return 0, nil
- }
- func (o Ping) MarshalXDR() ([]byte, error) {
- return nil, nil
- }
- func (o Ping) MustMarshalXDR() []byte {
- return nil
- }
- func (o Ping) AppendXDR(bs []byte) ([]byte, error) {
- return bs, nil
- }
- func (o Ping) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- return xw.Tot(), xw.Error()
- }
- func (o *Ping) DecodeXDR(r io.Reader) error {
- return nil
- }
- func (o *Ping) UnmarshalXDR(bs []byte) error {
- return nil
- }
- func (o *Ping) DecodeXDRFrom(xr *xdr.Reader) error {
- return xr.Error()
- }
- /*
- Pong Structure:
- (contains no fields)
- struct Pong {
- }
- */
- func (o Pong) EncodeXDR(w io.Writer) (int, error) {
- return 0, nil
- }
- func (o Pong) MarshalXDR() ([]byte, error) {
- return nil, nil
- }
- func (o Pong) MustMarshalXDR() []byte {
- return nil
- }
- func (o Pong) AppendXDR(bs []byte) ([]byte, error) {
- return bs, nil
- }
- func (o Pong) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- return xw.Tot(), xw.Error()
- }
- func (o *Pong) DecodeXDR(r io.Reader) error {
- return nil
- }
- func (o *Pong) UnmarshalXDR(bs []byte) error {
- return nil
- }
- func (o *Pong) DecodeXDRFrom(xr *xdr.Reader) error {
- return xr.Error()
- }
- /*
- JoinRelayRequest Structure:
- (contains no fields)
- struct JoinRelayRequest {
- }
- */
- func (o JoinRelayRequest) EncodeXDR(w io.Writer) (int, error) {
- return 0, nil
- }
- func (o JoinRelayRequest) MarshalXDR() ([]byte, error) {
- return nil, nil
- }
- func (o JoinRelayRequest) MustMarshalXDR() []byte {
- return nil
- }
- func (o JoinRelayRequest) AppendXDR(bs []byte) ([]byte, error) {
- return bs, nil
- }
- func (o JoinRelayRequest) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- return xw.Tot(), xw.Error()
- }
- func (o *JoinRelayRequest) DecodeXDR(r io.Reader) error {
- return nil
- }
- func (o *JoinRelayRequest) UnmarshalXDR(bs []byte) error {
- return nil
- }
- func (o *JoinRelayRequest) DecodeXDRFrom(xr *xdr.Reader) error {
- return xr.Error()
- }
- /*
- RelayFull Structure:
- (contains no fields)
- struct RelayFull {
- }
- */
- func (o RelayFull) EncodeXDR(w io.Writer) (int, error) {
- return 0, nil
- }
- func (o RelayFull) MarshalXDR() ([]byte, error) {
- return nil, nil
- }
- func (o RelayFull) MustMarshalXDR() []byte {
- return nil
- }
- func (o RelayFull) AppendXDR(bs []byte) ([]byte, error) {
- return bs, nil
- }
- func (o RelayFull) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- return xw.Tot(), xw.Error()
- }
- func (o *RelayFull) DecodeXDR(r io.Reader) error {
- return nil
- }
- func (o *RelayFull) UnmarshalXDR(bs []byte) error {
- return nil
- }
- func (o *RelayFull) DecodeXDRFrom(xr *xdr.Reader) error {
- return xr.Error()
- }
- /*
- JoinSessionRequest Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Key |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Key (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct JoinSessionRequest {
- opaque Key<32>;
- }
- */
- func (o JoinSessionRequest) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.EncodeXDRInto(xw)
- }
- func (o JoinSessionRequest) MarshalXDR() ([]byte, error) {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o JoinSessionRequest) MustMarshalXDR() []byte {
- bs, err := o.MarshalXDR()
- if err != nil {
- panic(err)
- }
- return bs
- }
- func (o JoinSessionRequest) AppendXDR(bs []byte) ([]byte, error) {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- _, err := o.EncodeXDRInto(xw)
- return []byte(aw), err
- }
- func (o JoinSessionRequest) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- if l := len(o.Key); l > 32 {
- return xw.Tot(), xdr.ElementSizeExceeded("Key", l, 32)
- }
- xw.WriteBytes(o.Key)
- return xw.Tot(), xw.Error()
- }
- func (o *JoinSessionRequest) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.DecodeXDRFrom(xr)
- }
- func (o *JoinSessionRequest) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.DecodeXDRFrom(xr)
- }
- func (o *JoinSessionRequest) DecodeXDRFrom(xr *xdr.Reader) error {
- o.Key = xr.ReadBytesMax(32)
- return xr.Error()
- }
- /*
- Response Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Code |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Message |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Message (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct Response {
- int Code;
- string Message<>;
- }
- */
- func (o Response) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.EncodeXDRInto(xw)
- }
- func (o Response) MarshalXDR() ([]byte, error) {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o Response) MustMarshalXDR() []byte {
- bs, err := o.MarshalXDR()
- if err != nil {
- panic(err)
- }
- return bs
- }
- func (o Response) AppendXDR(bs []byte) ([]byte, error) {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- _, err := o.EncodeXDRInto(xw)
- return []byte(aw), err
- }
- func (o Response) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- xw.WriteUint32(uint32(o.Code))
- xw.WriteString(o.Message)
- return xw.Tot(), xw.Error()
- }
- func (o *Response) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.DecodeXDRFrom(xr)
- }
- func (o *Response) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.DecodeXDRFrom(xr)
- }
- func (o *Response) DecodeXDRFrom(xr *xdr.Reader) error {
- o.Code = int32(xr.ReadUint32())
- o.Message = xr.ReadString()
- return xr.Error()
- }
- /*
- ConnectRequest Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of ID |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ ID (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct ConnectRequest {
- opaque ID<32>;
- }
- */
- func (o ConnectRequest) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.EncodeXDRInto(xw)
- }
- func (o ConnectRequest) MarshalXDR() ([]byte, error) {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o ConnectRequest) MustMarshalXDR() []byte {
- bs, err := o.MarshalXDR()
- if err != nil {
- panic(err)
- }
- return bs
- }
- func (o ConnectRequest) AppendXDR(bs []byte) ([]byte, error) {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- _, err := o.EncodeXDRInto(xw)
- return []byte(aw), err
- }
- func (o ConnectRequest) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- if l := len(o.ID); l > 32 {
- return xw.Tot(), xdr.ElementSizeExceeded("ID", l, 32)
- }
- xw.WriteBytes(o.ID)
- return xw.Tot(), xw.Error()
- }
- func (o *ConnectRequest) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.DecodeXDRFrom(xr)
- }
- func (o *ConnectRequest) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.DecodeXDRFrom(xr)
- }
- func (o *ConnectRequest) DecodeXDRFrom(xr *xdr.Reader) error {
- o.ID = xr.ReadBytesMax(32)
- return xr.Error()
- }
- /*
- SessionInvitation Structure:
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of From |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ From (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Key |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Key (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Length of Address |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- / /
- \ Address (variable length) \
- / /
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | 0x0000 | Port |
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- | Server Socket (V=0 or 1) |V|
- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
- struct SessionInvitation {
- opaque From<32>;
- opaque Key<32>;
- opaque Address<32>;
- unsigned int Port;
- bool ServerSocket;
- }
- */
- func (o SessionInvitation) EncodeXDR(w io.Writer) (int, error) {
- var xw = xdr.NewWriter(w)
- return o.EncodeXDRInto(xw)
- }
- func (o SessionInvitation) MarshalXDR() ([]byte, error) {
- return o.AppendXDR(make([]byte, 0, 128))
- }
- func (o SessionInvitation) MustMarshalXDR() []byte {
- bs, err := o.MarshalXDR()
- if err != nil {
- panic(err)
- }
- return bs
- }
- func (o SessionInvitation) AppendXDR(bs []byte) ([]byte, error) {
- var aw = xdr.AppendWriter(bs)
- var xw = xdr.NewWriter(&aw)
- _, err := o.EncodeXDRInto(xw)
- return []byte(aw), err
- }
- func (o SessionInvitation) EncodeXDRInto(xw *xdr.Writer) (int, error) {
- if l := len(o.From); l > 32 {
- return xw.Tot(), xdr.ElementSizeExceeded("From", l, 32)
- }
- xw.WriteBytes(o.From)
- if l := len(o.Key); l > 32 {
- return xw.Tot(), xdr.ElementSizeExceeded("Key", l, 32)
- }
- xw.WriteBytes(o.Key)
- if l := len(o.Address); l > 32 {
- return xw.Tot(), xdr.ElementSizeExceeded("Address", l, 32)
- }
- xw.WriteBytes(o.Address)
- xw.WriteUint16(o.Port)
- xw.WriteBool(o.ServerSocket)
- return xw.Tot(), xw.Error()
- }
- func (o *SessionInvitation) DecodeXDR(r io.Reader) error {
- xr := xdr.NewReader(r)
- return o.DecodeXDRFrom(xr)
- }
- func (o *SessionInvitation) UnmarshalXDR(bs []byte) error {
- var br = bytes.NewReader(bs)
- var xr = xdr.NewReader(br)
- return o.DecodeXDRFrom(xr)
- }
- func (o *SessionInvitation) DecodeXDRFrom(xr *xdr.Reader) error {
- o.From = xr.ReadBytesMax(32)
- o.Key = xr.ReadBytesMax(32)
- o.Address = xr.ReadBytesMax(32)
- o.Port = xr.ReadUint16()
- o.ServerSocket = xr.ReadBool()
- return xr.Error()
- }
|