aboutsummaryrefslogtreecommitdiffstats
path: root/protocol/qtv/qtv.go
blob: 30bd1547b6694e10339c33d34a2b6d9f2f006e84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package qtv

import "github.com/osm/quake/protocol"

const (
	ProtocolVersion = "QTV_EZQUAKE_EXT"
	Version         = 1
)

const (
	ExtensionDownload = 1 << 0
	ExtensionSetInfo  = 1 << 1
	ExtensionUserList = 1 << 2
)

const (
	CLCStringCmd protocol.CommandType = 1
)