diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-13 07:40:22 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-13 07:40:22 +0200 |
| commit | 2a665812a0c224ef32d37b2cca681512c5b7d6c1 (patch) | |
| tree | 8e5cf0c2c28775bff5afeeea4d719c627442adbc /internal/protocol | |
| parent | 71e431af2e65196ad4e7bc3404e772b1726d3338 (diff) | |
task 399: add client session spec scaffolding
Diffstat (limited to 'internal/protocol')
| -rw-r--r-- | internal/protocol/capabilities.go | 9 |
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" +) |
