summaryrefslogtreecommitdiff
path: root/internal/protocol
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-13 07:40:22 +0200
committerPaul Buetow <paul@buetow.org>2026-03-13 07:40:22 +0200
commit2a665812a0c224ef32d37b2cca681512c5b7d6c1 (patch)
tree8e5cf0c2c28775bff5afeeea4d719c627442adbc /internal/protocol
parent71e431af2e65196ad4e7bc3404e772b1726d3338 (diff)
task 399: add client session spec scaffolding
Diffstat (limited to 'internal/protocol')
-rw-r--r--internal/protocol/capabilities.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/protocol/capabilities.go b/internal/protocol/capabilities.go
new file mode 100644
index 0000000..24b2704
--- /dev/null
+++ b/internal/protocol/capabilities.go
@@ -0,0 +1,9 @@
+package protocol
+
+const (
+ // HiddenCapabilitiesPrefix identifies server capability advertisements sent over the hidden control channel.
+ HiddenCapabilitiesPrefix = ".syn capabilities "
+
+ // CapabilityQueryUpdateV1 marks support for in-flight query replacement over an existing session.
+ CapabilityQueryUpdateV1 = "query-update-v1"
+)