diff options
| author | Paul Buetow <paul@buetow.org> | 2021-08-28 20:10:54 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-08-28 20:10:54 +0100 |
| commit | 8c2e94030d0e31289c35fcfb56499707fd4a7ccd (patch) | |
| tree | 9655b6caf48e998d6a2a2ed5f4b70437b9235d29 /internal/protocol/protocol.go | |
| parent | 6d727b9bdbc387c8a5c34406a2c4de9140face38 (diff) | |
make use of more buffers on server side
Diffstat (limited to 'internal/protocol/protocol.go')
| -rw-r--r-- | internal/protocol/protocol.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/protocol/protocol.go b/internal/protocol/protocol.go index 2a570cd..43021a2 100644 --- a/internal/protocol/protocol.go +++ b/internal/protocol/protocol.go @@ -5,6 +5,8 @@ const ( ProtocolCompat string = "4" // MessageDelimiter delimits separate messages. MessageDelimiter byte = '¬' + // FieldDelimiter delimits aggregation fields. + FieldDelimiter byte = '|' // AggregateDelimiter delimits parts of an aggregation message. AggregateDelimiter string = "➔" ) |
