summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-08-19Use correct signature for "button-press-event" callback function;Bill Meier3-92/+98
Whitespace cleanup; Use gboolean as appropriate; svn path=/trunk/; revision=33844
2010-08-18Various minor cleanup:Bill Meier1-172/+135
- Non-event signal callback functions should return void; - Event signal callback had missing 'user_data' arg; - Rename various symbols for clarity; - Rename local functions with names of form gtk_...; - Use gboolean where appropriate; - Remove all 'exit(10)' statements; - Whitespace; - ... svn path=/trunk/; revision=33843
2010-08-18Fix for Bug 5052:Gerasimos Dimitriadis1-10/+15
Good ZigBee Beacon detected as malformed In ZigBee 2006 the Tx-Offset is optional, while in the 2007 and later versions, the Tx-Offset is a required value. Since both 2006 and and 2007 versions have the same protocol version (2), we should treat the Tx-Offset as well as the update ID as optional elements svn path=/trunk/; revision=33842
2010-08-18main_cf_cb_file_read_finished(): use get_dirname() to get the directory of theJeff Morriss1-4/+2
current file name. This fixes a crash after failing to allocate some massive number of bytes if the file name did not contain a path--which is the case when doing "wireshark -r myfile.pcap". svn path=/trunk/; revision=33841
2010-08-18Fix ipprim IPv6 port number offsets.Martin Mathieson1-2/+2
svn path=/trunk/; revision=33840
2010-08-18Show IPv6 addresses in ipprim summary line.Martin Mathieson1-2/+12
svn path=/trunk/; revision=33839
2010-08-18Fix indentation.Anders Broman1-3/+3
svn path=/trunk/; revision=33838
2010-08-18From Cal Turney:Anders Broman2-15/+8
Restores Mark All Displayed item when all packets are displayed. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5115 svn path=/trunk/; revision=33836
2010-08-18Various minor cleanups....Bill Meier1-111/+129
svn path=/trunk/; revision=33835
2010-08-18Minor cleanup of iax2 graph:Bill Meier1-29/+50
- Display current value in combo boxes (pixels_per_tick, etc) to always match actual values being used to create graph; - yscale combo box entries: show ms values as ms (not x000 usecs); show us values with unit "us" (not "ms"); - Determine max yscale label width properly as the largest of the top or middle label lengths; - Cleanup some indentation. svn path=/trunk/; revision=33834
2010-08-17Updates due to ITU Operational Bulletins 956 and 957Gerasimos Dimitriadis2-828/+883
svn path=/trunk/; revision=33833
2010-08-17The Mobile Status msg in BSSAP+ has IMSI as first possible IEGerasimos Dimitriadis1-1/+1
svn path=/trunk/; revision=33832
2010-08-17Change a channel type #define to be contiguous with others.Martin Mathieson1-1/+1
svn path=/trunk/; revision=33831
2010-08-17(Trivial) Reword comments about callback function signatures.Bill Meier1-1/+2
svn path=/trunk/; revision=33830
2010-08-17(Trivial) window_delete_event_cb() 'user_data' arg is unused ...Bill Meier1-4/+4
svn path=/trunk/; revision=33829
2010-08-17Minor changes related to signal callback functions:Bill Meier4-7/+9
- all: filter_te_syntax_check_cb should have an (unused) 'gpointer user_data' arg; - filter_dlg.c: filter_sel_list_cb user_data arg is unused; svn path=/trunk/; revision=33828
2010-08-17Commit 33815 renamed packet-nt-sonmp.c to packet-ndp.cJörg Mayer1-1/+1
svn path=/trunk/; revision=33827
2010-08-17Discourage people from stealing <control> keystrokes that have somewhatGuy Harris1-1/+33
standard meanings for anything other than those standard purposes. svn path=/trunk/; revision=33826
2010-08-17Fix two typos/bugs (introduced by me in the previous commit).Bill Meier1-2/+2
svn path=/trunk/; revision=33825
2010-08-17From Tom Hughes: FastCGI dissector.Bill Meier4-0/+436
See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5067 From me: - Fix one bug; - Add a comment about some code which doesn't display info in COL_INFO as intended due to what seems to be a Wireshark bug in tcp_dissect_pdus() when there are multiple records in a TCP frame. svn path=/trunk/; revision=33824
2010-08-16No need to have the same separator line twice, once with the new packetGuy Harris1-84/+112
list and once with the old packet list. Have Boolean variables for some of the predicates in set_menus_for_selected_packet(), to clarify what they're testing. Clean up indentation. Add some comments for various issues. (FYI, what "Restore the functionality of <Ctrl>A and <Ctrl>X to the filter textbox." means, in the comment for the previous checkin, "don't use <Ctrl>A or <Ctrl>X for our own purposes, so they work the same way they do in other applications using GTK+"; the checkin changed some menu items not to use <Ctrl>A and <Ctrl>X as accelerators.) svn path=/trunk/; revision=33823
2010-08-16Clarify that the "Sequence number" is given in big endian representation and ↵Stephen Fisher1-4/+2
the "Sequence number (LE)" is little endian. svn path=/trunk/; revision=33822
2010-08-16Change the protocol name from "Nortel NDP" to "Nortel Discovery Protocol" in ↵Stephen Fisher1-1/+1
the protocol registration. svn path=/trunk/; revision=33821
2010-08-16Fix display of Client's FQDN and clear up the confusion with the S, O and N ↵Stephen Fisher1-12/+10
bits from the RFC descriptions. svn path=/trunk/; revision=33820
2010-08-16Fix an include.Gerald Combs1-1/+1
svn path=/trunk/; revision=33819
2010-08-16Fix compilation on Windows.Gerald Combs1-11/+11
svn path=/trunk/; revision=33818
2010-08-16From Cal Turney:Anders Broman7-111/+213
1. Restore the functionality of <Ctrl>A and <Ctrl>X to the filter textbox. 2. Assign intuitive shortcuts without consuming any new shortcut letters. 3. Add 'Un-Time Reference All Packets' to the menu. 4. Disallow the marking or ignoring of all packets in the capture. 5. Make the Mark/Ignore/Time Reference-related menu items context sensitive. 6. Add 'ref_time_count' to the capture_file structure 7. Utilize marked/ignored/ref_time_count vars to prevent needless looping thru the entire packet list by exiting the loop when it becomes zero. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5115 svn path=/trunk/; revision=33817
2010-08-16Don't drop characters in the middle of a UTF-8 sequence. Fixes bug 5066.Gerald Combs2-9/+21
Use an ellipsis character instead of three dots. svn path=/trunk/; revision=33816
2010-08-16Modernize the SONMP ("SynOptics Network Management Protocol") dissector by ↵Stephen Fisher6-87/+103
renaming it to NDP ("Nortel Discovery Protocol") and do some basic cleanup. svn path=/trunk/; revision=33815
2010-08-16Clean up indentation.Guy Harris1-24/+25
svn path=/trunk/; revision=33814
2010-08-16Typo - wrong IE code for APN aggregate maximum bit rate in messageAnders Broman1-1/+1
Activate default EPS bearer context request. svn path=/trunk/; revision=33813
2010-08-16Set length of 'PDU Block Header' subtrees.Martin Mathieson1-2/+15
svn path=/trunk/; revision=33812
2010-08-16From rodebiet:Anders Broman1-16/+24
tvb_get_bits32 produces malformed_packet if no_of_bits < 25 and tvb remaining = 3 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5080 svn path=/trunk/; revision=33811
2010-08-16Removed some TAB's.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=33810
2010-08-16Added Info for RTTPapdu.Stig Bjørlykke2-4/+25
svn path=/trunk/; revision=33809
2010-08-16From Slava:Anders Broman2-1/+126
This patch adds to the Infiniband dissector the ability to dissect EoIB (Ethernet-over-Infiniband) traffic which uses Mellanox Technologies Ltd's standard for encapsulating Ethernet traffic inside Infiniband packets. This patch is submitted on behalf of Mellanox Technologies Ltd. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5061 svn path=/trunk/; revision=33808
2010-08-16From Christian Durrer:Anders Broman1-17/+50
- Support for extended packet size for read/write block telegrams - Added expert info for bad CRC, telegram retries and NAK responses - Removed amount of retries which has not been displayed correctly https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5088 svn path=/trunk/; revision=33807
2010-08-16From Stephen Donnelly:Anders Broman2-8/+42
Add BFS extension header decoding to ERF dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5113 svn path=/trunk/; revision=33806
2010-08-15Fix compilation error when compiling for "old packet list".Bill Meier1-2/+0
svn path=/trunk/; revision=33802
2010-08-15[Automatic manuf and enterprise-numbers update for 2010-08-15]Gerald Combs2-10/+227
svn path=/trunk/; revision=33801
2010-08-14Added proto_item_prepend_text().Stig Bjørlykke3-0/+49
svn path=/trunk/; revision=33800
2010-08-14Fixed guint64 printf modifier.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=33799
2010-08-14Fix up decoding of bitfields in the aligned variant.Anders Broman1-30/+31
svn path=/trunk/; revision=33798
2010-08-13Convert our argument list to UTF-8 at startup on Windows. This lets usGerald Combs1-10/+14
double-click on files with non-Latin characters, e.g. "0_αßΓπ∟σµ.cap". svn path=/trunk/; revision=33797
2010-08-13Fix module names.Gerald Combs2-2/+2
svn path=/trunk/; revision=33796
2010-08-13From Rick:Anders Broman1-1/+1
Update dictionary.xml for Gx Enum. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5107 svn path=/trunk/; revision=33795
2010-08-13Add missing break, should fix bugAnders Broman1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5110 svn path=/trunk/; revision=33794
2010-08-13Do not load lua-scripts starting with '.'Stig Bjørlykke1-0/+8
svn path=/trunk/; revision=33793
2010-08-13Get rid of some no-longer-necessary includes of simple_dialog.h (nowGuy Harris3-3/+0
that cf_read_frame() and cf_read_frame_r() pop up an alert box on an error, its callers no longer do so). svn path=/trunk/; revision=33792
2010-08-13Instead of using a Boolean for the search direction, use an enum, soGuy Harris15-397/+445
that you can tell from examination whether the search is forward or backward. Make the cf_find_packet routines take the direction as an explicit argument, rather than, in the cases where you don't want to permanently set the direction, saving the direction in the capture_file structure, changing it, doing the search, and restoring the saved direction. Give more information in the Doxygen comments for those routines. Add a cf_find_packet_dfilter_string() routine, which takes a filter string rather than a compiled filter as an argument. Replace find_previous_next_frame_with_filter() with it. Have cf_read_frame_r() and cf_read_frame() pop up the error dialog if the read fails, rather than leaving that up to its caller. That lets us eliminate cf_read_error_message(), by swallowing its code into cf_read_frame_r(). Add Doxygen comments for cf_read_frame_r() and cf_read_frame(). Don't have find_packet() read the packet before calling the callback routine; leave that up to the callback routine. Add cf_find_packet_marked(), to find the next or previous marked packet, and cf_find_packet_time_reference(), to find the next or previous time reference packet. Those routines do *not* need to read the packet data to see if it matches; that lets them run much faster. Clean up indentation. svn path=/trunk/; revision=33791