From 8bb62eaaa2df13adf1de74081ca4f8b1dfc66423 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Wed, 9 May 2012 16:09:16 -0500 Subject: [PATCH] Undo communication protocol version bump. Looks like it wasn't necessary because no message between remote peers needed to be changed to support IPv6, just messages between Bro parent and child processes were changed. --- src/RemoteSerializer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RemoteSerializer.cc b/src/RemoteSerializer.cc index 3abec00f59..0383977de1 100644 --- a/src/RemoteSerializer.cc +++ b/src/RemoteSerializer.cc @@ -196,7 +196,7 @@ extern "C" { // Gets incremented each time there's an incompatible change // to the communication internals. -static const unsigned short PROTOCOL_VERSION = 0x08; +static const unsigned short PROTOCOL_VERSION = 0x07; static const char MSG_NONE = 0x00; static const char MSG_VERSION = 0x01;