From ca90ebdfa8789654766c5d7969baa7afacd9ebd2 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Mon, 16 Feb 2026 16:31:54 -0500 Subject: initial commit --- protocol/qtv/qtv.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 protocol/qtv/qtv.go (limited to 'protocol/qtv') diff --git a/protocol/qtv/qtv.go b/protocol/qtv/qtv.go new file mode 100644 index 0000000..30bd154 --- /dev/null +++ b/protocol/qtv/qtv.go @@ -0,0 +1,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 +) -- cgit v1.2.3-59-g8ed1b