aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sctp.c
AgeCommit message (Expand)AuthorFilesLines
2013-03-14Fixed an indent to avoid a warning: for loop has empty body [-Wempty-body]Stig Bjørlykke1-2/+1
2013-03-14From beroset:Anders Broman1-36/+37
2013-02-27Move show_exception() and show_reported_bounds_error() toGuy Harris1-18/+16
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-2/+2
2013-02-26Revert r44559: go back to using g_malloc()'d memory for SCTP reassembly. ThatJeff Morriss1-6/+58
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-4/+4
2013-01-26Comment out cases of unused hf array entries found by checkhf.Bill Meier1-2/+6
2012-12-05Reduce the level of the warning about the padding on the final parameter fromJeff Morriss1-1/+1
2012-11-29Make all enum_val_t's const.Jeff Morriss1-1/+1
2012-11-29The padding of the last parameter is not included in the length of the chunkMichael Tüxen1-4/+11
2012-11-28Add native SCTP encapsulation.Michael Tüxen1-0/+1
2012-11-27Warn about non-final parameters that aren't padded correctly. I'm not sureJeff Morriss1-2/+4
2012-11-22Fix the expert info dealing with parameter padding. The final parameterMichael Tüxen1-53/+61
2012-11-06Add expert infos (PI_ERROR) for chunks and parameters that are not padded toJeff Morriss1-30/+31
2012-10-11Change 'for (i=1; i<=n;...' to 'for (i=0; i<n; ...)'Bill Meier1-13/+13
2012-10-06Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7802 :Pascal Quantin1-1/+1
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-09-11Add data parameter to dissector_try_heuristicJakub Zawadzki1-2/+2
2012-08-18Use capture scoped memory for hash table functionalityMichael Mann1-58/+6
2012-08-14Update SCTP PPIDs.Michael Tüxen1-0/+3
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-6/+6
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
2012-06-20Use separate filters for the RTT found on a SACK and the RTT found on aJeff Morriss1-5/+7
2012-06-01Only propose decoding PPID 0 if that PPID is in the currently-selected frame.Jeff Morriss1-12/+14
2012-05-05Fix a typo which resulted in displaying the wrong SCTP stream reset responseMichael Tüxen1-1/+1
2012-04-11Fix:Jörg Mayer1-4/+4
2012-03-31Add support for RFC 6525.Michael Tüxen1-70/+130
2012-03-15Add support for SSH over SCTP.Michael Tüxen1-1/+2
2012-02-28Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3315 -Jeff Morriss1-0/+6
2011-12-09From Thomas Dreibholz:Jaap Keuter1-16/+17
2011-11-08packet_info's in_error_pkt is now a bitfield like in_gre_pkt.Chris Maynard1-2/+2
2011-10-18Add an expert info if we found the checksum to be bad.Jeff Morriss1-52/+60
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, FT_ST...Bill Meier1-1/+1
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-a...Bill Meier1-1/+1
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...Bill Meier1-16/+16
2011-10-03From Michael Mann:Anders Broman1-14/+10
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-1/+1
2011-08-30Revert r38800, as the crc routines contains some tvb functions.Stig Bjørlykke1-1/+1
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-1/+1
2011-07-18Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier1-4/+3
2011-05-19Don't assign to an unused 'proto item *': Coverity 1033 & 906Bill Meier1-4/+3
2011-04-17Corrected equality check in frag_equal().Stig Bjørlykke1-4/+4
2011-03-07Don't pass retransmitted chunks to subdissectors. Instead just mark them asJeff Morriss1-17/+34
2011-02-10Obtained from Thomas Dreibholz: Update SCTP PPIDs.Michael Tüxen1-1/+16
2011-01-26Add expert info related to gap ack blocks.Michael Tüxen1-2/+35
2011-01-13Introduce, and start using, tvb_ip_to_str() and tvb_ip6_to_str(). TheseJeff Morriss1-4/+4
2011-01-11Don't attempt to reassemble short (reported_len > len) chunks.Jeff Morriss1-0/+7
2011-01-11Don't store message fragments whose length is 0: there's no point. (OtherwiseJeff Morriss1-9/+11
2011-01-05Don't pass the result of tvb_get_ptr() into a %s format string: the string mayJeff Morriss1-1/+1
2011-01-05Use reported length (instead of the captured length) when dissecting errorJeff Morriss1-66/+93