blob: f76aadb1e1f11351ee6333ceeb06b8cd447d62cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package types
import "github.com/pektezol/bitreader"
type SvcSendTable struct {
NeedsDecoder bool
Length uint8
Props int32
}
func ParseSvcSendTable(reader *bitreader.ReaderType) SvcSendTable {
return SvcSendTable{
NeedsDecoder: reader.TryReadBool(),
Length: reader.TryReadInt8(),
}
// No one cares about SvcSendTable
}
|