From 82326cad9a48422fa32179a3090d79fa753082f9 Mon Sep 17 00:00:00 2001 From: senft-desktop Date: Thu, 29 Nov 2012 16:30:27 +0100 Subject: [PATCH] Added new msg types --- ws2012/P2P/uebungen/4/src/node/MessageType.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ws2012/P2P/uebungen/4/src/node/MessageType.java b/ws2012/P2P/uebungen/4/src/node/MessageType.java index ea6fe7e1..7421d26d 100644 --- a/ws2012/P2P/uebungen/4/src/node/MessageType.java +++ b/ws2012/P2P/uebungen/4/src/node/MessageType.java @@ -5,4 +5,6 @@ public class MessageType { public final static byte LEAVE = 1; public final static byte NEW_NEIGHBOR = 2; public final static byte ACK = 3; + public final static byte BROADCAST = 4; + public final static byte STATUS = 4; }