aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-08-23Get rid of unnecessary function pointer - just directly call theguy1-4/+1
function in the switch statement. This keeps us from calling through an uninitialized pointer for custome parameter numbers other than LLRP_VENDOR_IMPINJ (as warned of by at least some compilers). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44624 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-23Rationalise the way lists/elements are allocated.martinm1-4/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44623 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-23Visual C++ 2008 → 2010.gerald2-20/+22
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44622 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-23From Martin Kupec via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7658eapache2-128/+1917
Major enhancements to the LLRP dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44621 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-23Catch key events where needed and direct them to the display filtergerald6-96/+112
QLineEdit. Use Tango colors for syntax highlighting. Rename a few variables. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44620 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-23From Martin Kupec via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7658eapache1-1/+1
Don't pass string-related encoding flags to get_uint_value() when handling FT_UINT_STRING fields. This was causing all such fields with non-ASCII encodings to use little-endian encoding, even when OR-ed with ENC_BIG_ENDIAN. (not actually the topic of the above bug, but discovered during LLRP protocol testing, which was the topic of the above bug) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44619 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22Add larger sizes to try to make Windows 8 happy.gerald2-0/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44618 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22Put the state of flags in the hop_flags field into the summary line.guy1-5/+12
Note in the introductory comment what "LISP" refers to, for the benefit of those of us who grew up thinking it stood for "LISt Processing". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44617 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22Handle return/enter/escape in the Go to Packet QLineEdit.gerald1-1/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44616 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22Try to make Ubuntu buildbot happypascal1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44615 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22proto_item_append_string() doesn't work this case, so stop using it.martinm3-24/+24
I am tempted though to chage proto_item_append_string() just be like proto_item_append_text() without the call to g_vsnprintf(), which is the expensize part I was hoping to avoid. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44614 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22From Loránd Jakab via ↵pascal1-181/+916
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7654: Add features to the Locator/ID Separation Protocol (LISP) dissector git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44613 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22Add French National parameter ↵etxrab2-1/+11
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7656 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44612 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-22From Teguh via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7657eapache1-2/+2
Replace the last instance of gnutls_datum with gnutls_datum_t. The former is deprecated, and the latter is already being used elsewhere in the file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44611 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Delete the ROHC from here as it is superceded by packet-rohc.cmartinm1-1672/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44610 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Call proto_item_append_string() rather than proto_item_append_text()martinm2-16/+16
when there are no specifiers. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44609 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Avoid some calls to strlen() by remembering return value frommartinm1-10/+11
g_strlcpy(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44608 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Use tvb_get_stringz() rather than tvb_get_const_stringz(). I know thatmartinm1-5/+5
these strings will be in a single, contiguous tvb... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44607 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Use proto_item_append_string() rather than proto_item_append_text() withmartinm3-8/+11
%s. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44606 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Add dissection of locationInformation IE in Ericsson proprietary extensionpascal4-20/+129
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44605 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Fix filter names for Ericsson proprietary extensionspascal3-79/+80
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44604 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7648 :pascal6-17/+177
Add support for Ericsson proprietary extensions to GSM MAP dissector git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44603 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-21Fix compilation.gerald1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44602 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Restore the previous focus when we're done going to a packet.gerald2-3/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44601 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Flow-Direction is 3GPP code 1080 not 1073.morriss1-19/+59
Add in a few other (numerically) nearby AVPs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44600 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Stylize the "go to packet" bar.gerald3-3/+29
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44597 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Remove unused hf_gsm_map_imsi_digits entry and fix filter name for ↵pascal2-20/+10
hf_gsm_map_TBCD_digits (which is also used for IMEI, ASCI call reference, MS Group ID and MS Long Group ID on top of IMSI) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44596 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Avoid defining 2 entries with incompatible types (FT_BYTES vs FT_NONE) and ↵pascal2-1/+6
same filter git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44595 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-20Basic "Go to Packet" implementation.gerald5-5/+98
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44594 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Enhance the http dissector to correctly reassemble httpsake1-1/+15
headers when the first tcp segment does not contain a full line. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44593 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Handle double-clicks in the tree.gerald5-26/+69
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44592 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Be more specific.gerald1-27/+27
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44591 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Try colors from the Tango palette.gerald2-33/+97
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44590 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Split test_file_close out of do_file_close and use it in file_open_cmd_cb.eapache1-10/+24
Means we don't end up closing the current file if the user decides not to open a new file after all. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7649 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44589 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Try to fix the buildbotetxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44588 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Add automatic tree expansion. Get rid of some unnecessary void * casts.gerald6-19/+88
Fix a couple of compilation warnings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44587 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Apply the speed improvement from r44578 to 64bits variant and length ↵pascal1-33/+42
determinant decoding. Compute the buffer size so that it can contain the field name and the bit string display. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44586 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19[Automatic manuf, services and enterprise-numbers update for 2012-08-19]gerald3-25/+230
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44582 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Don't go into a tight loop when there's no specific number of passes.eapache1-17/+19
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7651 Also, use consistent indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44581 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19From Toralf Förster via ↵eapache2-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7652 Use a fast bash built-in rather than a slow call out to `expr` to increment the loop count. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44580 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19highlight only the bytes that actually belong to the CATmartink1-8/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44579 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Calling g_strlcat() for every bit of a constrained integer was reallymartinm1-10/+12
slow. Track the index and write the characters directly (while still carefully checking that we don't spill the buffer). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44578 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Both lists of elements are always allocated together, so save a scanmartinm1-5/+4
through the segments by only getting the counts once. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44577 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Correct a number in a value_string.martinm1-1/+1
Spotted in a profile that match_strval_ext() was calling match_strval_linear() a lot (this value_string has 1476 entries - it was epensive!). Found error by adding temp debug to _match_strval_ext_init() - do we ever expect the entries not to be in order? Am wondering if the warning should be committed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44576 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Speed up drawing of axes by taking cairo_stroke() andmartinm1-12/+4
cairo_set_line_width() out of the loops they are in. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44575 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Save time by not appending byte values to the SDU item if will be hidden ↵martinm1-11/+20
anyway (as happens when RLC dissector is called). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44574 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Make sure osx-dmg.sh is executable.gerald1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44573 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Get the package version using configure.in, not grep+sed. Make sure wegerald3-9/+10
exit with an error in a few places where it would be useful. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44572 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19use session allocated memory for rtp_add_address/srtp_add_address hash tablesmmann5-79/+31
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44571 f5534014-38df-0310-8fa8-9805f1628bb7
2012-08-19Commit 44474 added some arguments to the ac_init macro that brokejmayer1-1/+1
extraction of the wireshark version for cmake. Now the version part is either terminated by ")" (old) or "," (added). It looks like .*? does not exist for non-greedy matches in cmake regex. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44570 f5534014-38df-0310-8fa8-9805f1628bb7