Documentation ¶
Overview ¶
Package proto implements MTProto 2.0 primitives.
See https://core.telegram.org/mtproto/description for reference.
Index ¶
Constants ¶
const GZIPTypeID = 0x3072cfa1
GZIPTypeID is TL type id of GZIP.
const MessageContainerTypeID = 0x73f1f8dc
MessageContainerTypeID is TL type id of MessageContainer.
const ResultTypeID = 0xf35c6d01
ResultTypeID is TL type id of Result.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DecompressionBombErr ¶ added in v0.48.0
DecompressionBombErr means that GZIP decode detected decompression bomb which decompressed payload is significantly higher than initial compressed size and stopped decompression to prevent OOM.
func (*DecompressionBombErr) Error ¶ added in v0.48.0
func (d *DecompressionBombErr) Error() string
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.
type Message ¶
Message is element of MessageContainer.
type MessageContainer ¶
type MessageContainer struct {
Messages []Message
}
MessageContainer contains slice of messages.
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 NewMessageIDNano ¶ added in v0.33.1
func NewMessageIDNano(nano int64, typ MessageType) MessageID
NewMessageIDNano returns new message id for provided current unix nanoseconds and type.
type MessageIDBuf ¶ added in v0.25.0
type MessageIDBuf struct {
// contains filtered or unexported fields
}
MessageIDBuf stores last N message ids and is used in replay attack mitigation.
func NewMessageIDBuf ¶ added in v0.25.0
func NewMessageIDBuf(n int) *MessageIDBuf
NewMessageIDBuf initializes new message id buffer for last N stored values.
func (*MessageIDBuf) Consume ¶ added in v0.25.0
func (b *MessageIDBuf) Consume(newID int64) bool
Consume returns false if message should be discarded.
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) *MessageIDGen
NewMessageIDGen creates new message id generator.
Current time will be provided by now() function.
This generator compensates time resolution problem removing probability of id collision.
Such problem can be observed for relatively high RPS, sequential calls to time.Now() will return same time which leads to equal ids.
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 system time 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 )
func (MessageType) String ¶ added in v0.19.0
func (m MessageType) String() string
type UnencryptedMessage ¶
UnencryptedMessage is plaintext message.