From: Simon Wunderlich Date: Fri, 28 Feb 2014 13:21:39 +0000 (+0100) Subject: mod_skinny: remove unknown field from access_status X-Git-Tag: v1.5.11~78^2~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f804d2d955a5ab7f7191ce6ba81bc08d92c374a;p=thirdparty%2Ffreeswitch.git 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 --- diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.h b/src/mod/endpoints/mod_skinny/skinny_protocol.h index efa4282f27..4ea82ec057 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 */