aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zrtp.c
AgeCommit message (Collapse)AuthorFilesLines
2013-03-19From beroset:Anders Broman1-1/+1
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48430
2013-01-31Use '#if 0 ... #endif' rather than /** ... **/ to comment outBill Meier1-0/+12
unused hf[] entries (which I should have done in the first place). svn path=/trunk/; revision=47390
2013-01-26Comment out cases of unused hf array entries found by checkhf.Bill Meier1-272/+262
svn path=/trunk/; revision=47302
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-07-16proto_tree_add_boolean() takes value not ENC_ flag.Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=43747
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-6/+6
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-21/+21
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-09-26Get rid of check_col() and use ENC.Anders Broman1-50/+46
svn path=/trunk/; revision=39153
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-1/+1
This time keep the tvb routines in epan. Now we can use common crc routines outside epan. svn path=/trunk/; revision=38810
2011-08-30Revert r38800, as the crc routines contains some tvb functions.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=38803
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-1/+1
This way we can use the crc routines in wiretap. svn path=/trunk/; revision=38800
2011-04-22Don't create subtrees that are not used (and don't create subtrees which mightJeff Morriss1-15/+5
have--if the original code was different--contained only one sub-item). Remove some no-longer-used ett variables. svn path=/trunk/; revision=36810
2011-04-04Fix Coverity 1137, 1138, 1139: UNUSED_VALUEStephen Fisher1-6/+3
svn path=/trunk/; revision=36457
2010-10-01Adding new error code.Jaap Keuter1-0/+2
svn path=/trunk/; revision=34305
2010-09-28Add the missing Signature-capable flag to the Hello message.Jaap Keuter1-0/+36
Add missing SRT(C)P setup information to Conf2ACK message. svn path=/trunk/; revision=34277
2010-08-12Update ZRTP dissector to draft-22.Jaap Keuter1-1/+6
svn path=/trunk/; revision=33789
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-2/+0
svn path=/trunk/; revision=32367
2010-01-21Add Skein MAC authentication tag types.Jaap Keuter1-1/+3
svn path=/trunk/; revision=31598
2010-01-13From Didier Gautheron:Anders Broman1-2/+1
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
2009-10-08calculate_crc32c -> crc32c_calculate for proper 'namespacing'Kovarththanan Rajaratnam1-6/+6
svn path=/trunk/; revision=30405
2009-09-24Remove check_col() guardKovarththanan Rajaratnam1-39/+13
svn path=/trunk/; revision=30124
2009-09-22Use col_set_str instead of col_add_fstr when adding constant strings to COL_INFOKovarththanan Rajaratnam1-14/+14
svn path=/trunk/; revision=30082
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-08-02Add additional cypher types.Jaap Keuter1-1/+7
svn path=/trunk/; revision=29260
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-1/+1
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-03-05Addition of Ping and PingAck messages.Jaap Keuter1-1/+83
svn path=/trunk/; revision=27615
2009-02-12Fix some indentation; Also: do a few other trivial changesBill Meier1-143/+144
svn path=/trunk/; revision=27442
2009-01-28Minor changes mostly related to proto_register & proto_reg_handoff;Bill Meier1-8/+3
- Use 'dissector standard template format' - Remove 'once-only' ["if (!initialized) ..."] if not req'd - Misc Also: adjust some indentation svn path=/trunk/; revision=27324
2009-01-11Updated to support protocol version 1.1, draft-zimmermann-avt-zrtp-12.Jaap Keuter1-1/+2
svn path=/trunk/; revision=27209
2008-10-27On request from Philip Zimmermann:Jaap Keuter1-9/+59
Additional cypher type and key agreement, and check of the CRC. svn path=/trunk/; revision=26574
2008-10-25Updated to the latest IETF draft draft-zimmermann-avt-zrtp-10.Jaap Keuter1-2/+6
svn path=/trunk/; revision=26555
2008-09-25From Sagar Pai:Jaap Keuter1-0/+1035
This is a dissector for ZRTP, the Zfone projects secure media protocol, developed by Phil Zimmermann. It is updated to the latest IETF draft draft-zimmermann-avt-zrtp-08. svn path=/trunk/; revision=26274