aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dplay.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.darkjames1-1/+1
(COPYING will be updated in next commit) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43536 f5534014-38df-0310-8fa8-9805f1628bb7
2012-01-19Fix some duplicate display filter names.cmaynard1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40590 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-2/+2
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-20Fix Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-12/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39493 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-16Do some conversions of proto_tree_add_item() 'encoding' arg.wmeier1-1/+1
(previously missed). 57 FT_BOOLEAN: FALSE-->ENC_BIG_ENDIAN 31 FT_BOOLEAN: TRUE-->ENC_LITTLE_ENDIAN 10 FT_BYTES: ENC_BIG_ENDIAN-->ENC_NA 1 FT_BYTES: ENC_LITTLE_ENDIAN-->ENC_NA 21 FT_BYTES: FALSE-->ENC_NA 2 FT_BYTES: TRUE-->ENC_NA 2 FT_IPXNET: ENC_BIG_ENDIAN-->ENC_NA 6 FT_IPv6: ENC_BIG_ENDIAN-->ENC_NA 1 FT_IPv6: FALSE-->ENC_NA 6 FT_NONE: ENC_BIG_ENDIAN-->ENC_NA 19 FT_NONE: FALSE-->ENC_NA 3 FT_NONE: TRUE-->ENC_NA 1 FT_STRING: ENC_BIG_ENDIAN-->ENC_ASCII|ENC_NA 1 FT_STRING: ENC_LITTLE_ENDIAN-->ENC_ASCII|ENC_NA 5 FT_STRING: FALSE-->ENC_ASCII|ENC_NA 1 FT_STRING: TRUE-->ENC_ASCII|ENC_NA 4 FT_STRINGZ: ENC_NA-->ENC_ASCII|ENC_NA 8 FT_STRINGZ: FALSE-->ENC_ASCII|ENC_NA 1 FT_INT32: FALSE-->ENC_BIG_ENDIAN 1 FT_INT32: TRUE-->ENC_LITTLE_ENDIAN 11 FT_UINT8: 0-->ENC_BIG_ENDIAN 111 FT_UINT8: FALSE-->ENC_BIG_ENDIAN 17 FT_UINT8: TRUE-->ENC_LITTLE_ENDIAN 1 FT_UINT16: 0-->ENC_BIG_ENDIAN 68 FT_UINT16: FALSE-->ENC_BIG_ENDIAN 18 FT_UINT16: TRUE-->ENC_LITTLE_ENDIAN 4 FT_UINT24: FALSE-->ENC_BIG_ENDIAN 70 FT_UINT32: FALSE-->ENC_BIG_ENDIAN 1 FT_UINT32: TRUE-->ENC_LITTLE_ENDIAN 4 FT_UINT64: FALSE-->ENC_BIG_ENDIAN 1 FT_UINT64: TRUE-->ENC_LITTLE_ENDIAN 1 FT_UINT_STRING: FALSE-->ENC_ASCII|ENC_BIG_ENDIAN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39442 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-2/+2
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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39426 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-39/+39
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39260 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26Get rid of check_col() and use ENC.etxrab1-121/+118
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39151 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-19Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.wmeier1-4/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37716 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-18Removed some unneeded assignments.stig1-1/+1
Found by clang. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36698 f5534014-38df-0310-8fa8-9805f1628bb7
2010-09-24(Refining the regexp...) Replace blurbs that match the name (case ↵morriss1-5/+5
insensitive) with NULL. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34230 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13From Didier Gautheron:etxrab1-10/+2
col_clear.diff Remove calls to col_clear : - called twice. - before functions which also clear the column - by replacing col_clear + col_append_xxx with col_add_xxx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31517 f5534014-38df-0310-8fa8-9805f1628bb7
2009-11-17Remove the address operator from value_string arrays fed to VALS()dimeg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30995 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-22Use col_set_str instead of col_add_fstr when adding constant strings to COL_INFOkrj1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30082 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_clear with col_checkkrj1-4/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29346 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_clear with col_checkkrj1-4/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29344 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkkrj1-6/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29340 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-183/+183
(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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-23Removed some "initializer does not fit or is out of range" warnings.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27826 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-02Trivial warning fixesjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26899 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-26Minor cleanup related to proto_register & proto_reg_handoffwmeier1-10/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26280 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-25prefs_register_protocol not req'd since no prefs; simplify reg_handoff & do ↵wmeier1-14/+2
minor cleanup git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26080 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-08Add Winsock AF_ values to epan/aftypes.h; the DirectPlay and ActiveSyncguy1-15/+5
Desktop Pass-Through protocols use them. Use those values in the dissectors for those protocols. In the Desktop Pass-Through dissector, define the Winsock SOCK_ values ourselves, and get the IP protocol values from <epan/ipproto.h>. Don't include now-unnecessary system headers in that dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25959 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-08Don't get AF_ values used in protocols from system header files -guy1-12/+15
they're not guaranteed to be the same in all OSes. Define them ourselves. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25958 f5534014-38df-0310-8fa8-9805f1628bb7
2008-04-12Fix for bug 2452:jake1-1/+17
Tighten heuristics on DirectPlay player to player messages, so that RTP isn't mistaken as such. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24965 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-03From Kai Blin: etxrab1-637/+405
Properly dissect all DirectPlay messages observed on the wire so far. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24535 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-27From Kai Blin: etxrab1-277/+514
Dissect SuperPackedPlayer struct and packet type 29 and Correctly dissect type 02, 05 and 07 packets. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24491 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-26From Kai Blin: etxrab1-231/+329
Update parsing of the DirectPlay header and Correctly dissect the SessionDesc structure of DirectPlay http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2304 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24474 f5534014-38df-0310-8fa8-9805f1628bb7
2007-12-29Make dplay compile on Windows.etxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23970 f5534014-38df-0310-8fa8-9805f1628bb7
2007-12-29Add preliminary dissector for network protocol used by Microsoft DirectPlay.sfisher1-0/+1677
From Kai Blin via bug #2134. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23968 f5534014-38df-0310-8fa8-9805f1628bb7