From d4576b0032ddb6742a3f7708cc20092ede707e26 Mon Sep 17 00:00:00 2001 From: Luis Sagastume <8935075+sagastume@users.noreply.github.com> Date: Thu, 11 Jan 2024 12:57:48 -0600 Subject: [PATCH] docs(bolt): Changes in examples of handshake.adoc - Modification in the example to display the inclusion of version 4.1 instead of version 4.0. - Adjustment in the example to accurately reflect the server's response with version 4.1. --- modules/ROOT/pages/bolt/handshake.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/bolt/handshake.adoc b/modules/ROOT/pages/bolt/handshake.adoc index f6fbc12..3d0ddff 100644 --- a/modules/ROOT/pages/bolt/handshake.adoc +++ b/modules/ROOT/pages/bolt/handshake.adoc @@ -105,13 +105,13 @@ The range cannot span multiple major versions. .Example with versions 4.3 plus two previous minor versions, 4.2 and 4.1 ---- -00 02 03 04 +01 02 03 04 ---- .Example where the client is aware of five Bolt versions; 3, 4.0, 4.1, 4.2 and 4.3, and the server responds with 4.1 ---- C: 60 60 B0 17 -C: 00 03 03 04 00 00 01 04 00 00 00 04 00 00 00 03 +C: 00 02 03 04 00 00 01 04 00 00 00 04 00 00 00 03 S: 00 00 01 04 ----