From 624f034fac114d279921c9cbe7552244b653c841 Mon Sep 17 00:00:00 2001 From: Simon Wunderlich Date: Fri, 28 Feb 2014 14:21:39 +0100 Subject: [PATCH] mod_skinny: remove unknown field from access_status Cisco 7925g send access status message with just 8 byte of payload data. Since we don't interpret the unknown 3rd field anyway, remove it. This will prevent the first register to fail. Signed-off-by: Simon Wunderlich Signed-off-by: Nathan Neulinger --- src/mod/endpoints/mod_skinny/skinny_protocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.h b/src/mod/endpoints/mod_skinny/skinny_protocol.h index 870b4c578a..5687744ec0 100644 --- a/src/mod/endpoints/mod_skinny/skinny_protocol.h +++ b/src/mod/endpoints/mod_skinny/skinny_protocol.h @@ -458,7 +458,7 @@ struct PACKED dialed_phone_book_message { struct PACKED accessory_status_message { uint32_t accessory_id; uint32_t accessory_status; - uint32_t unknown; + /* uint32_t unknown; */ /* this field is missing in 7925G */ }; /* RegisterAckMessage */