aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-03-18Handle the case where length is > remaining tvbetxrab2-8/+12
trace in: http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1809 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24691 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Add codeset 5 ETSI party catagory IE.jake1-1/+44
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24690 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Add consistent Bearer Capability layer identifications.jake1-20/+36
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24689 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Finish fixing bug #1138: Follow TCP Streams gets stream direction wrong ...sfisher1-5/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24687 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Update to the latest User's Guide.gerald2-6/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24684 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Allow custom columns in export as CSV and PSML.stig1-4/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24683 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-18Bah, committed the wrong file.stig1-2/+2
Second try on allow custom columns when printing. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24682 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Export get_column_custom_field from libwireshark.stig1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24680 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Allow custom columns when printing.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24679 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Allow tshark to print custom columns.stig1-1/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24678 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Fix a typo.gerald3-10/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24677 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Bump the version in the trunk to 1.0.99 (which will become 1.1.0 at somegerald3-5/+5
point). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24676 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17From Martin Peylo:etxrab1-875/+907
dissect TIPC encapsulated in TCP http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2335 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24674 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17From William Pursell:etxrab3-4/+4
Minor errors in the documentation, and an Ethereal reference git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24673 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17add support for ND RDNSS (icmpv6)etxrab2-28/+65
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2364 (re written) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24672 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Added a svn:ignore target.stig0-0/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24671 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17From Anders: Add a couple of entries to libwireshark.def.gerald1-6/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24670 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Fix another crash from ↵morriss1-8/+7
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1113 : conv_tables_t hold several g_malloc()'d things that need to be freed in smb_init_protocol() but the conv_tables themselves were se_ allocated so they have already been freed by the time we want to try to free them. Fix this by g_malloc()'ing them and freeing them after we've freed their contents. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24669 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17pol_value->name was g_malloc()'d which meant we needed to go through the ↵morriss1-26/+10
hash table to free them all. But, like in http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1113 the pol_value's themselves are se_ allocated so they have already been freed when we want to traverse them. So, make pol_value->name se_ allocated so we don't have to do any cleanup on the hash table. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24668 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17oid_get_default_mib_path() is present in libwireshark.def. Make sure it'sgerald2-5/+5
available even if HAVE_LIBSMI isn't defined. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24667 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17There are several g_malloc()'d things hanging off x11_conv_data_t's so don't ↵morriss1-155/+161
se_ alloc that structure but rather g_malloc() it and free it after we've freed the contents. This fixes the X11 part of the crash from http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1113 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24666 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17For Anders: add call_ber_oid_callback()morriss1-5/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24665 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17There are several g_malloc()'d things hanging off ldasp_conv_info_t's so ↵morriss2-7/+19
don't se_ alloc that structure but rather g_malloc() it and free it after we've freed the contents. This fixes the LDAP part of the crash from http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1113 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24664 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Add SMPP statistics by Abhik Sarkarjake1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24663 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17From Abhik Sarkar:jake1-6/+12
The attached patch changes the handling of the parameters in question to octet string instead of string git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24662 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-17Move the conversation addresses to the se_ allocator. This does not solve a ↵morriss1-30/+7
memory leak but it does save a 12 line comment explaining why the const-ness of the pointers was being cast away and (more importantly) fixes the conversation part of the crashes detailed in http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1113 . In particular the conversation keys themselves are se_ alloc'd so by the time we get to conversation_init() (again) the keys have already been freed by the se_ allocator so traversing them isn't such a good idea. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24661 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Fix LDAP crash (on certain platforms) from ↵morriss2-152/+184
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1613 : if the string is NULL pass "(null)" in instead (that's the behavior we get on Linux anyway). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24660 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Add register_ber_oid_dissector_handle to the exported functions.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24659 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Set rxinfo.epoch from the epoch, and then assign it to ts.secs; thatguy1-10/+6
avoids doing a narrowing case - which, in this case, is safe (rxinfo.epoch is 32 bits, and the value assigned to it is 32 bits, so it's not as if it'd ever be wider than 32 bits even if ts.secs is wider than 32 bits), but you might still have to think about it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24658 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Added a cast to make it compile.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24657 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16From Peter Fuller: free pref_str in set_link_type() if preferences aren't ↵morriss1-5/+12
set. From me: call get_credential_inf() at startup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24656 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16From Gerhard Olsson:jake1-2/+15
Add "Assume COTP" prefererence instead of hard coding If there is no current dissector registered for X25 and there is no hints in the call packets, X25 tries to look at user data, then try heuristics. See end of dissect_x25_common This means that if the call data happens to start with 0x45, IP is assumed as the data format even if the packet cannot be handled as IP (for instance too short). It is better to try the heuristics first as they should have more complete tests. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24655 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16From Peter Kjellerstedtjake1-5/+3
The base64 decoder in epan_base64_decode() returns an incorrect length (one byte too many) for three out of four base64 coded strings. Please apply the attached patch to correct this. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24654 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16From Steve Karg:jake2-24/+122
Here is a modified patch that fixes the BACnet Schedule object Weekly_Schedule decoding when an array index is used. It also fixes the Priority_Array property when an array index is used. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24653 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Map "dcp.*" preferences to "dccp.*".guy1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24652 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16From Chaskiel Grundman via ↵morriss3-6/+13
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1556: patch to track afs requests by rx connection id git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24651 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Don't link plugins against libwireshark: any program that loads the dissectormorriss4-34/+15
plugins should already be linked against libwireshark. Don't link capinfos and editcap against libwireshark: they only needed to be because the plugins were linked against libwireshark (see rev 24123 and the ensuing discussion on -dev). capinfos and editcap: don't complain if plugins fail to load: dissector plugins should fail to load because they need libwireshark. I am assuming here that wiretap plugins don't need libwireshark (I've never seen such a plugin but LEGO's code and comments suggest this is the case). (The goal of this checkin is to stop linking capinfos and editcap against libwireshark while still allowing wiretap plugins. Since we don't have any such plugins in the tree I do somewhat doubt the need for all this but I don't want to be the one to remove the functionality.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24650 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Include epan/priveleges.h for get_credential_info()morriss2-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24649 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Have started_with_special_privs() assert out if get_credential_info() was notmorriss3-7/+30
previously called. This prevents the function from always returning TRUE in programs that hadn't called get_credential_info(). Call get_credential_info() in the programs that should have been. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24648 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16Oops, missed one name change.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24647 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-16OK, now use DCCP rather than DCP for the Datagram Congestion Controlguy3-357/+353
Protocol. (Better late than never....) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24646 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Rename Distributed Checksum Clearinghouse protocol from "DCCP" to justguy3-173/+173
"DCC". Googling for DCCP "Distributed Checksum Clearinghouse Protocol" finds only hits related to Ethereal/Wireshark, either on the Ethereal or Wireshark Web site, or on discussions where Datagram Congestion Control Protocol developers were griping that Ethereal/Wireshark already used DCCP for the Distributed Checksum Clearinghouse protocol. Next step: fix the Datagram Congestion Control Protocol dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24645 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Get rid of a flag that's not used and that has no effect.guy1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24644 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15From http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1539 :morriss9-568/+585
Hexadecimal and octal are unsigned. Don't let dissectors register signed fields (FT_INT*) to be displayed in hexadecimal (including HEX_DEC and DEC_HEX) or octal. Fix dissectors that do that mostly by changing the fields to unsigned though in PANA it appears the fields are meant to be signed so change those fields to be displayed in decimal. This fixes an assertion crash in hfinfo_numeric_format() if/when someone tries to create a filter using one of these mixed signed/unsigned fields (because that routine does not know how to present the user with a signed value in hex). Also add FT_*INT64 to the "make sure it's not BASE_NONE" check. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24643 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Add a comment.guy1-0/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24642 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Make the document icon brighter and clean it up.gerald1-0/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24641 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Check in the OS X packaging patch from bug 2341, since I've hadgerald66-140/+6593
confirmation that the OS X package works on at least one system other than my laptop. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24640 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Fix trivial spelling errorwmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24639 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Add register_ber_oid_dissector to the exported functions.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24638 f5534014-38df-0310-8fa8-9805f1628bb7
2008-03-15Try to fix distcheck again.gerald1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24637 f5534014-38df-0310-8fa8-9805f1628bb7