From 50b82c200d675a32a58a0408e92a9e5d35d47765 Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Fri, 30 Dec 2011 10:17:17 +0100 Subject: [PATCH] Do not treat signaling and management messages as errors. Instead we just ignore them for now. Signed-off-by: Richard Cochran --- msg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/msg.c b/msg.c index 113d9e0..e51bcbe 100644 --- a/msg.c +++ b/msg.c @@ -188,6 +188,7 @@ int msg_post_recv(struct ptp_message *m, int cnt) break; case SIGNALING: case MANAGEMENT: + break; default: return -1; }