[PPCAP] SCTP association ID IE is alwas 16 octets long including padding.

Change-Id: I1d381cb7f60f0ec57494becddc529cafb5d23052
Reviewed-on: https://code.wireshark.org/review/14323
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
AndersBroman 2016-03-03 13:33:55 +01:00 committed by Anders Broman
parent c524d73a67
commit 45406f5cff
1 changed files with 2 additions and 4 deletions

View File

@ -509,11 +509,9 @@ dissect_ppcap_sctp_assoc(tvbuff_t *tvb _U_, proto_tree * tree _U_, int offset)
proto_tree_add_item(tree, hf_ppcap_sctp_assoc, tvb, offset, length, ENC_ASCII | ENC_NA);
if (length % 4)
length = length + (4 - (length % 4));
offset += length;
/* The string can be 1 -15 characters long but the IE is padded to 16 bytes*/
return offset;
return offset + 16;
}
/* Dissecting the function Payload Data to call the protocol that based upon the type decided in the Payload Type */