You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/vtr/server_mode/index.rst
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,14 @@ The telegram header contains helper information required to properly extract the
23
23
24
24
Communication telegram structure.
25
25
26
-
26
+
.. note:: The telegram body itself could be compressed with zlib to minimize the amount of data transferred over the socket.
27
+
This compression is applied to the response of the 'get critical path report' request. The compressor ID byte in the telegram header signals whether the telegram body is compressed.
28
+
When the compressor ID is null, the telegram body is not compressed. If the compressor ID is 'z', it means the body is compressed with zlib.
29
+
30
+
.. note:: The checksum field contains the telegram body checksum. This checksum is used to validate the consistency of the telegram body during the dispatching phase.
31
+
If checksums are mismatched, the telegram is considered invalid and is skipped in processing.
32
+
33
+
27
34
.. _fig_comm_telegram_body_structure:
28
35
29
36
.. figure:: comm_telegram_body_structure.*
@@ -39,9 +46,6 @@ The telegram header contains helper information required to properly extract the
39
46
40
47
JOB_ID is a unique ID for a task. It is used to associate the request with the response by matching the same JOB_ID. Each new client request should increment the JOB_ID value; otherwise, it will not be clear which request the current response belongs to.
41
48
42
-
.. note:: The telegram body itself could be compressed with zlib to minimize the amount of data transferred over the socket.
43
-
This compression is applied to the response of the 'get critical path report' request.
44
-
The compressor ID byte in the telegram header signals whether the telegram body is compressed.
0 commit comments