summaryrefslogtreecommitdiff
path: root/classic/cpe.go
blob: 222ec74c5b29dd0fb3883e741432db2c0698a72f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package classic

type ExtInfo struct {
	AppName String
	ExtensionCount int16
}
func (e *ExtInfo) PacketId() byte {
	return 0x10
}

type ExtEntry struct {
	ExtName String
	Version int32
}
func (e *ExtEntry) PacketId() byte {
	return 0x11
}