]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
mod_skinny: remove unknown field from access_status
authorSimon Wunderlich <sw@simonwunderlich.de>
Fri, 28 Feb 2014 13:21:39 +0000 (14:21 +0100)
committerNathan Neulinger <nneul@neulinger.org>
Mon, 10 Mar 2014 20:17:50 +0000 (15:17 -0500)
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 <sw@simonwunderlich.de>
Signed-off-by: Nathan Neulinger <nneul@neulinger.org>
src/mod/endpoints/mod_skinny/skinny_protocol.h

index efa4282f27f7fc1e1c0db82d43cc3e2b3b1a6834..4ea82ec057d71fbffd1e346bc25db737083c2131 100644 (file)
@@ -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 */