proto

package
v0.17.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 4, 2021 License: MIT Imports: 10 Imported by: 0

Documentation

Overview

Package proto implements MTProto 2.0 primitives.

See https://core.telegram.org/mtproto/description for reference.

Index

Constants

View Source
const GZIPTypeID = 0x3072cfa1

GZIPTypeID is TL type id of GZIP.

View Source
const InitConnectionID = 0xc1cd5ea9

InitConnectionID is TL type id of initConnection#c1cd5ea9.

View Source
const InvokeWithLayerID = 0xda9b0d0d

InvokeWithLayerID is TL type id of invokeWithLayer#da9b0d0d.

View Source
const InvokeWithoutUpdatesTypeID = 0xbf9459b7

InvokeWithoutUpdatesTypeID is TL type id of invokeWithoutUpdates#bf9459b7.

View Source
const MessageContainerTypeID = 0x73f1f8dc

MessageContainerTypeID is TL type id of MessageContainer.

View Source
const ResultTypeID = 0xf35c6d01

ResultTypeID is TL type id of Result.

Variables

This section is empty.

Functions

func TypesMap

func TypesMap() map[uint32]string

TypesMap returns mapping from type ids to TL type names.

Types

type GZIP

type GZIP struct {
	Data []byte
}

GZIP represents a Packed Object.

Used to replace any other object (or rather, a serialization thereof) with its archived (gzipped) representation.

func (*GZIP) Decode

func (g *GZIP) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

func (GZIP) Encode added in v0.11.2

func (g GZIP) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type GetConfig

type GetConfig struct{}

GetConfig is help.getConfig#c4f9186b function.

func (GetConfig) Decode added in v0.11.0

func (GetConfig) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

func (GetConfig) Encode

func (GetConfig) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type InitConnection

type InitConnection struct {
	Flags          bin.Fields
	ID             int
	DeviceModel    string
	SystemVersion  string
	AppVersion     string
	SystemLangCode string
	LangPack       string
	LangCode       string

	Query bin.Object
}

InitConnection is initConnection#c1cd5ea9 function.

func (InitConnection) Decode added in v0.11.0

func (i InitConnection) Decode(b *bin.Buffer) (err error)

Decode implements bin.Decoder.

func (InitConnection) Encode

func (i InitConnection) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type InvokeWithLayer

type InvokeWithLayer struct {
	Layer int
	Query bin.Object
}

InvokeWithLayer is invokeWithLayer#da9b0d0d function.

invokeWithLayer#da9b0d0d {X:Type} layer:int query:!X = X;

https://core.telegram.org/method/invokeWithLayer

func (InvokeWithLayer) Decode added in v0.11.0

func (i InvokeWithLayer) Decode(b *bin.Buffer) (err error)

Decode implements bin.Decoder.

func (InvokeWithLayer) Encode

func (i InvokeWithLayer) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type InvokeWithoutUpdates added in v0.17.0

type InvokeWithoutUpdates struct {
	Query bin.Object
}

InvokeWithoutUpdates is invokeWithoutUpdates#bf9459b7 function.

invokeWithoutUpdates#bf9459b7 {X:Type} query:!X = X;

https://core.telegram.org/method/invokeWithoutUpdates

func (InvokeWithoutUpdates) Decode added in v0.17.0

func (i InvokeWithoutUpdates) Decode(b *bin.Buffer) (err error)

Decode implements bin.Decoder.

func (InvokeWithoutUpdates) Encode added in v0.17.0

func (i InvokeWithoutUpdates) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type Message

type Message struct {
	ID    int64
	SeqNo int
	Bytes int
	Body  []byte
}

Message is element of MessageContainer.

func (*Message) Decode

func (m *Message) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

type MessageContainer

type MessageContainer struct {
	Messages []Message
}

MessageContainer contains slice of messages.

func (*MessageContainer) Decode

func (m *MessageContainer) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

type MessageID

type MessageID int64

MessageID represents 64-bit message id.

func NewMessageID

func NewMessageID(now time.Time, typ MessageType) MessageID

NewMessageID returns new message id for provided time and type.

func (MessageID) Time

func (id MessageID) Time() time.Time

Time returns approximate time when MessageID were generated.

func (MessageID) Type

func (id MessageID) Type() MessageType

Type returns message type.

type MessageIDGen added in v0.16.0

type MessageIDGen struct {
	// contains filtered or unexported fields
}

MessageIDGen is message id generator that provides collision prevention.

The main reason of such structure is that now() can return same time during multiple calls and that leads to duplicate message id.

func NewMessageIDGen added in v0.16.0

func NewMessageIDGen(now func() time.Time, n int) *MessageIDGen

NewMessageIDGen creates new message id generator.

Current time will be provided by now() function. The n parameter configures capacity of message id history, bigger n results in bigger memory consumption.

func (*MessageIDGen) New added in v0.16.0

func (g *MessageIDGen) New(t MessageType) int64

New generates new message id for provided type, protecting from collisions that are caused by low memory resolution.

type MessageType

type MessageType byte

MessageType is type of message determined by message id.

A message is rejected over 300 seconds after it is created or 30 seconds before it is created (this is needed to protect from replay attacks).

The identifier of a message container must be strictly greater than those of its nested messages.

const (
	// MessageUnknown reports that message id has unknown time and probably
	// should be ignored.
	MessageUnknown MessageType = iota
	// MessageFromClient is client message identifiers.
	MessageFromClient
	// MessageServerResponse is a response to a client message.
	MessageServerResponse
	// MessageFromServer is a message from the server.
	MessageFromServer
)

type Result

type Result struct {
	RequestMessageID int64
	Result           []byte
}

Result is rpc_result#f35c6d01.

func (*Result) Decode

func (r *Result) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

func (*Result) Encode added in v0.11.0

func (r *Result) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

type UnencryptedMessage

type UnencryptedMessage struct {
	MessageID   int64
	MessageData []byte
}

UnencryptedMessage is plaintext message.

func (*UnencryptedMessage) Decode

func (u *UnencryptedMessage) Decode(b *bin.Buffer) error

Decode implements bin.Decoder.

func (UnencryptedMessage) Encode

func (u UnencryptedMessage) Encode(b *bin.Buffer) error

Encode implements bin.Encoder.

Directories

Path Synopsis
Package codec contains MTProto transport encoding implementations.
Package codec contains MTProto transport encoding implementations.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL