aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-09-22dfilter_free() can handle a NULL pointer so don't guard against that before ↵Kovarththanan Rajaratnam1-13/+6
calling it svn path=/trunk/; revision=30072
2009-09-22Introduce cap_file_add_fdata() and start using itKovarththanan Rajaratnam3-10/+17
svn path=/trunk/; revision=30071
2009-09-22Always initialise fdata even when we don't dissect (we access some of fdatas ↵Kovarththanan Rajaratnam1-2/+2
variables) svn path=/trunk/; revision=30070
2009-09-22Simply some logic inside process_packet()Kovarththanan Rajaratnam1-14/+8
svn path=/trunk/; revision=30069
2009-09-22Make frame_data_set_after_dissect() callers do the necessary checks insteadKovarththanan Rajaratnam3-22/+15
svn path=/trunk/; revision=30068
2009-09-22Switch Wireshark GUI (file.c) over to using frame_data.cKovarththanan Rajaratnam2-88/+10
svn path=/trunk/; revision=30067
2009-09-22Refactor frame_data_init() into frame_data_set_before_dissect() and ↵Kovarththanan Rajaratnam5-18/+63
frame_data_set_after_dissect(). svn path=/trunk/; revision=30066
2009-09-22- Add new_packet_list_set_sel_browse()Anders Broman3-11/+65
- When scrolling to the end don't select the row. svn path=/trunk/; revision=30065
2009-09-22From Gerasimos Dimitriadis:Anders Broman2-5/+5
Change of IEs in DTAP MODIFY msg. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4032 svn path=/trunk/; revision=30064
2009-09-22Fix minor formating issues by hand(bug 4001).Anders Broman1-2/+2
svn path=/trunk/; revision=30063
2009-09-22Fix minor formating issues by hand(bug 4001).Anders Broman1-12/+12
svn path=/trunk/; revision=30062
2009-09-22From Julian Fielding:Jaap Keuter1-7/+7
Function dissect_epath() expects path_length in bytes, but the value from the packet is in words, so there's lots of *2 and /2 in those parts of the code. In this invocation dissect_epath( tvbIOI, pi, 0, preq_info->IOILen, TRUE ); preq_info->IOILen is in words. In six places proto_tree_add_item is used with tvb NULL and size 0 to add an FT_UINT8/16/32 item. I think it should be replaced with proto_tree_add_uint(). svn path=/trunk/; revision=30061
2009-09-22Make sure that the old packet list works with the changes introduced in r30047Kovarththanan Rajaratnam1-4/+4
svn path=/trunk/; revision=30060
2009-09-22Constify colour sourceKovarththanan Rajaratnam2-16/+12
svn path=/trunk/; revision=30059
2009-09-21Fix for bug 4034:Jaap Keuter1-10/+9
Fix for missing register file and cleanup of code in register_all_py_protocols_func(). svn path=/trunk/; revision=30058
2009-09-21Set svn properties and fix Id keyword.Jaap Keuter9-9/+9
svn path=/trunk/; revision=30057
2009-09-21Minor white space cleanup.Stephen Fisher1-2/+1
svn path=/trunk/; revision=30056
2009-09-21Bring frame_data_init() and add_packet_to_packet_list() more in sync by ↵Kovarththanan Rajaratnam2-12/+19
adding 'ref_time' handling to frame_data_init(). For tshark/rawshark this is unused because they only do a single pass through the capture file svn path=/trunk/; revision=30055
2009-09-21Constify (missed in r30051)Kovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=30054
2009-09-21Only set cumulative bytes after passing the display filter testKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=30053
2009-09-21Move 'Delta timestamp to previous captured frame' calculation inside ↵Kovarththanan Rajaratnam2-7/+20
add_packet_to_packet_list(). This is done in order to streamline add_packet_to_packet_list() with frame_data_init(). Hopefully we can switch to frame_data_init() soon svn path=/trunk/; revision=30052
2009-09-21Store 'color_filter' as const in 'frame_data'Kovarththanan Rajaratnam5-5/+5
svn path=/trunk/; revision=30051
2009-09-21Don't include header files that are not requiredKovarththanan Rajaratnam1-6/+0
svn path=/trunk/; revision=30050
2009-09-21Remove unused 'vers' member in capture_fileKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30049
2009-09-21Remove unused 'pstats' member in capture_fileKovarththanan Rajaratnam2-3/+2
svn path=/trunk/; revision=30048
2009-09-21Rename capture_file.plist to capture_file.plist_start to make it consistent ↵Kovarththanan Rajaratnam8-46/+46
with capture_file.plist_end svn path=/trunk/; revision=30047
2009-09-21Remove second (redundant) assignment to fdata->cum_bytesKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=30046
2009-09-21Reverse order of NEW_PACKET_LIST guard, i.e. #ifdef NEW_PACKET_LIST instead ↵Kovarththanan Rajaratnam1-88/+86
of #ifndef NEW_PACKET_LIST svn path=/trunk/; revision=30045
2009-09-21Guard fdata->col_text_len/fdata->col_text with NEW_PACKET_LISTKovarththanan Rajaratnam2-46/+51
svn path=/trunk/; revision=30044
2009-09-21Fix typo in commentStephen Fisher1-1/+1
svn path=/trunk/; revision=30043
2009-09-21(cosmetic change) - reset cumulative bytes together with 'first_ts' and ↵Kovarththanan Rajaratnam1-476/+474
'prev_dis_ts' svn path=/trunk/; revision=30042
2009-09-21cf->dfilter is only set if it's valid so assert if that's not the caseKovarththanan Rajaratnam1-20/+15
svn path=/trunk/; revision=30041
2009-09-21Reset cumulative bytes when we open the fileKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=30040
2009-09-21Set fdata->num up front and roll back if necessaryKovarththanan Rajaratnam1-4/+8
svn path=/trunk/; revision=30039
2009-09-21Shuffle NEW_PACKET_LIST guardKovarththanan Rajaratnam1-6/+4
svn path=/trunk/; revision=30038
2009-09-21Add unsigned int type castKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=30037
2009-09-21Introduce a NEW_PACKET_LIST specialized version of ↵Kovarththanan Rajaratnam1-21/+138
add_packet_to_packet_list(). The old one contained too many #ifdef NEW_PACKET_LIST which reduced readability svn path=/trunk/; revision=30036
2009-09-21Add initial support for DNS/SCTP.Michael Tüxen1-5/+24
svn path=/trunk/; revision=30035
2009-09-21cf_change_time_formats() is not needed with new packet list.Anders Broman3-30/+24
svn path=/trunk/; revision=30034
2009-09-21Move frame_data_init() declaration to frame_data.hKovarththanan Rajaratnam4-22/+17
svn path=/trunk/; revision=30033
2009-09-21Make sure that we track the amount allocated when we're doling out memory ↵Kovarththanan Rajaratnam1-0/+4
from the system pool. The verify pointer stuff should should now work with WIRESHARK_DEBUG_EP_NO_CHUNKS=1 and WIRESHARK_DEBUG_SE_NO_CHUNKS=1 svn path=/trunk/; revision=30032
2009-09-21Add a more verbose error printout.Anders Broman1-20/+36
svn path=/trunk/; revision=30031
2009-09-21Add NEW_PACKET_LIST guard wrt fdata->col_textKovarththanan Rajaratnam1-3/+5
svn path=/trunk/; revision=30030
2009-09-21CMake:Jörg Mayer12-16/+215
- Add opcua to the list of plugins to build - Link the gtk stuff statically into wireshark - Beginnings of "make install" - Change a few things about install paths svn path=/trunk/; revision=30029
2009-09-20From Gerasimos Dimitriadis:Anders Broman1-2/+22
DTAP decoding of Notification Indicator IE. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4029 svn path=/trunk/; revision=30028
2009-09-20Try to fix(take II):Anders Broman1-1/+1
Fedora 11/Gtk2.16.6: Get two Gtk-Critical messages each time a capture fie is opened: (lt-wireshark:15705): Gtk-CRITICAL **: gtk_tree_view_column_set_fixed_width: assertion `fixed_width > 0' failed gtk_tree_view_column_set_fixed_width is incompatible with variable width columns. svn path=/trunk/; revision=30027
2009-09-20From Kjell Hultman:Jaap Keuter1-1/+840
IEC104 Signal dissection added - not complete (only implemented what I needed for the moment). svn path=/trunk/; revision=30026
2009-09-20From Jim Young via bug 4033:Kovarththanan Rajaratnam1-0/+10
With the "old" list if keyboard focus was initially in the details pane, the use of the <F7>/<F8> keys will restore focus to details pane after the prev/next move. Without this patch "new" packet list prev/next moves simply moves focus to summary pane. svn path=/trunk/; revision=30025
2009-09-20Fix return type for frame_data_init()Kovarththanan Rajaratnam3-2/+3
svn path=/trunk/; revision=30024
2009-09-20Introduce frame_data_cleanup() and start using itKovarththanan Rajaratnam6-35/+21
svn path=/trunk/; revision=30023