aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
AgeCommit message (Collapse)AuthorFilesLines
2009-03-22P64 changes: Fix some cases for which size_t is not requiredwmeier18-33/+31
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27822 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-22(Minor) Change a g_snprint to a g_strlcpy;wmeier1-3/+2
Also: Fix an off-by-1 inadvertantly introduced a while back. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27820 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-22g_snprintf() & etc since glib 1.3.12 don't return -1, wmeier1-44/+26
and also always NUL terminate the string. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27819 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-20proto_item_append_string() actually appends to the string value for aguy1-3/+4
protocol tree item; the item being added to isn't a string, so proto_item_append_text() should be used - but the second argument to proto_item_append_text() should always be a format string. Use #if 0/#endif to leave a data structure in the source code without compiling it in, rather than a comment (if you use a comment, things can break if you put a comment into the commented-out code). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27811 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-20Fix broken linux build.martinm1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27809 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-20Further NAS updates.etxrab1-173/+412
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27808 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-20From Dejan Bucar (bug 3345):stig1-5/+0
Added official LINX Ethernet type. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27804 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-19More NAS EPS updates and bugfixes.etxrab1-27/+348
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27802 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-19Revert the previous changes MCC and MNC are coded differently in different ↵etxrab1-3/+9
places. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27801 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-19Add an expert item for the seconds-encoded-as-little-endian bug.gerald1-2/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27797 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-19From Michael Lum:etxrab1-296/+275
MEID digit translation fix. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3341 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27795 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-19- Move register_dissector(...) from proto_reg_handoff() to proto_register();wmeier3-9/+12
- Use dissector_add_handle("udp",...) rather than dissector_add(""udp",0,...) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27794 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Clean up indentation.guy2-15/+18
Note that -5047 can also mean "disk quota exceeded". Define the ASP errors as 32-bit (negative) numbers, just like the AFP errors. Add a couple of ASP errors to the list of error values. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27792 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Removed C++ style comments.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27791 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Don't g_assert() in a dissector, just drive on.guy1-2/+2
Use ws_fopen(), not fopen(), to open files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27789 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Don't g_assert() in a dissector; just drive on.guy1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27788 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18None of those strings will have a length that doesn't fit in a gulong.guy1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27787 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Get rid of a bunch of uses of size_t where int suffices.guy1-201/+201
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27786 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Squelch a P64 warning.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27785 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Get rid of P64 warnings; those strings should never be longer than 2^31-1.guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27784 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Use g_strreverse() to reverse strings.guy1-16/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27783 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Get rid of some P64 warnings; those lengths should never be > 2^31-1.guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27782 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Get rid of uses of size_t; they're not necessary, and it causes a pileguy1-17/+17
of 64-bit-to-32-bit conversion warnings in LLP64 environments such as Win64. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27781 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18improve dissection of optional parameters. In particular, make the tag and ↵richardv1-26/+68
length fields explicit. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27780 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18fix unused parameter warningrichardv1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27779 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18- Fix APDU dissection.etxrab5-34/+86
- NAS EPS bugfixes and enhancements. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27778 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18 From Jakub Zawadzki: g_gnprintf & etc: Use size of buffer [not size -1];wmeier1-6/+7
From me: - As suggested by Jakub actually use sizeof(...) rather than a numeric constant in various places; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27775 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18Allow a lot more than 32 subheaders.martinm1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27774 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18From Jakub Zawadzki: g_gnprintf & etc: Use size of buffer [not size -1];wmeier1-3/+3
- As suggested actually use sizeof(...) rather than a numeric constant. - g_snprintf() and g_vsnprintf() since glib 1.3.12 do not return -1. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27772 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18From Munenori Ohuchi:etxrab1-4/+162
Enhacement to support 'WiMAX Forum/3GPP2 Proxy Mobile IPv4'. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18From Bjørn Mork:etxrab2-0/+37
Decode ipv6prefix attributes in packet-radius. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27769 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-18From Patrick A Baldwin:etxrab3-96/+3019
Enhancements for CCSDS Dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27768 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-17Fix a typo.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27761 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-17(Minor): Remove some unneccessary code; Fix a typo;wmeier1-12/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27759 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-17Add a comment about the way g_snprintf is used.wmeier1-0/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27758 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-17Add a comment about the way g_snprintf() is used.wmeier1-0/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27756 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-16Add a ReTX count (resends being caused by HARQ NACKs).martinm3-5/+40
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27739 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-16Remove some non-ascii characters.wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27737 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-16Removed some non-ASCII characters.stig9-13/+13
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27736 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-15Adjusted my name to use only ASCII characters.stig7-9/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27733 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-15Fix perror, calloc usage so checkAPIs doesn't complain.wmeier1-2/+2
(The usage is inside an #ifdef REMOVED so it's just commented out so checkAPIs.pl doesn't see it). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27731 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-15From Jakub Zawadzki:stig2-7/+4
More remove checking for NULL before g_free(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27728 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-15As suggested by Jakub Zawadzki: g_free() is NULL safe, so we don't need ↵wmeier2-3520/+3500
check against it. Also (from me): Clean up spacing git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27727 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-15Fix non-ascii characterswmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27723 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-13g_free() is NULL safe, so we don't need check against it.stig1-4/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27719 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-13From Jakub Zawadzki (bug 3331):stig12-61/+41
g_free() is NULL safe, so we don't need check against it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27718 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-13Fix inverted interpretation of global_megaco_dissect_tree.rbalint1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27716 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-12From Menno Andriesse:stig1-3/+3
Check for correct tx_mode in dissect_s5066_21() and dissect_s5066_25(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27714 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-12From Chris Ridd (bug 3329):stig2-3/+16
There are two additional fields in PartialOutcomeQualifiers in X.500(2005) - the entryCount CHOICE now has an "exact" option, and there's a "streamedResult" flag. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27713 f5534014-38df-0310-8fa8-9805f1628bb7
2009-03-11The abbreviation is "TOHC", not "RoHC".martinm1-17/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27700 f5534014-38df-0310-8fa8-9805f1628bb7