aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-09-24Don't guard col_append_str with check_colKovarththanan Rajaratnam45-893/+286
svn path=/trunk/; revision=30125
2009-09-24Remove check_col() guardKovarththanan Rajaratnam30-286/+90
svn path=/trunk/; revision=30124
2009-09-24Remove unneeded #includes (along with C++ style comments added by mistake in ↵Bill Meier1-3/+0
the last commit). svn path=/trunk/; revision=30123
2009-09-24Minor: Use tvb_reported_length... not tvb_length...Bill Meier1-6/+6
svn path=/trunk/; revision=30122
2009-09-24Various: Bill Meier1-803/+834
- check_col no longer req'd; - Remove unneeded #includes; - Use consistent indentation/style; - Reformat a few lines; svn path=/trunk/; revision=30121
2009-09-24The beginning of a Python script/tool that indexes capture files. It ↵Kovarththanan Rajaratnam1-0/+89
currently extracts all protocols that appear in the given capture files. svn path=/trunk/; revision=30120
2009-09-24Add what appear to be missing breaks in two cases of a switch () {...}.Bill Meier1-0/+2
svn path=/trunk/; revision=30119
2009-09-24Minor changes:Bill Meier1-60/+42
- Use col_clear only once (in the right place); - Use col_add_fstr instead of col_clear/col_append_fstr; - check_col no longer req'd; svn path=/trunk/; revision=30118
2009-09-24Minor changes:Bill Meier1-22/+15
Use col_clear (in the right place) instead of col_set_str(...,""); check_col no longer req'd; svn path=/trunk/; revision=30117
2009-09-24Minor changes:Bill Meier1-71/+60
- remove unneeded includes; - check_col no longer req'd; - move proto_register/proto_reg_handoff to the end of the file; - fix some typos; svn path=/trunk/; revision=30116
2009-09-24Get rid of some deprecated functions.Anders Broman1-24/+54
svn path=/trunk/; revision=30115
2009-09-24Minor changes: Bill Meier1-11/+7
- check_col no longer req'd; - use tvb_strncaseeql instead of tvb_get_ptr & etc; - Change if (guint > 0) to if (guint != 0). svn path=/trunk/; revision=30114
2009-09-24Make sure that we also traverse the free_list while looking for valid pointersKovarththanan Rajaratnam1-8/+17
svn path=/trunk/; revision=30113
2009-09-24Use val_to_str_const() since we intend on passing the string to col_set_str ↵Kovarththanan Rajaratnam1-1/+1
(which expects a constant string) svn path=/trunk/; revision=30112
2009-09-24Update *.vcproj to visual studio 8Anders Broman13-22/+34
svn path=/trunk/; revision=30111
2009-09-24option menu -> combo box.Anders Broman1-18/+21
svn path=/trunk/; revision=30110
2009-09-24While trying to understand commit 30107, I found the following atJörg Mayer1-1/+1
http://www.itk.org/Bug/view.php?id=9219 Note that CMAKE_CFG_INTDIR is no longer necessary for this purpose but has been left for compatibility with existing projects. Instead add_custom_command() recognizes executable target names in its COMMAND So just use "lemon" instead of specifying the full path. svn path=/trunk/; revision=30109
2009-09-24Call subdissector even when tree is NULLKovarththanan Rajaratnam1-70/+66
svn path=/trunk/; revision=30108
2009-09-23Run lemon from CMAKE_CFG_INTDIR.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30107
2009-09-23Added Apple Cocoa library to processes dumping OSX version.Stig Bjørlykke1-1/+8
Added Apple CoreServices to wireshark. svn path=/trunk/; revision=30106
2009-09-23Add a few hints for OS X builds.Jörg Mayer1-0/+9
svn path=/trunk/; revision=30105
2009-09-23- Add $Id: $ tagsJörg Mayer25-1/+76
- FindHtmlViewer.cmake: Try to add reading the name of the html viewer from the HTML_VIEWER environment variable (untested) svn path=/trunk/; revision=30104
2009-09-23Fix for bug 4046:Jaap Keuter1-1/+1
Fix type of FIP dissector header field hf_fip_desc_map. svn path=/trunk/; revision=30103
2009-09-23Small indent fix.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30102
2009-09-23Define a global variable as static;Bill Meier1-4/+1
#include <stdio.h> & <stdlib.h> not req'd. svn path=/trunk/; revision=30101
2009-09-23Try finding gpg-error library, to improve building on OSX.Stig Bjørlykke1-1/+2
svn path=/trunk/; revision=30100
2009-09-23Removed setting GLIB2_LIBRARIES to GLIB_LIBRARY, to improve build on OSX.Stig Bjørlykke1-3/+0
svn path=/trunk/; revision=30099
2009-09-23Try finding pixbuf and pango libraries to help building on OSX.Stig Bjørlykke1-0/+31
svn path=/trunk/; revision=30098
2009-09-23Change gchar foo[mm][nn] = {"xxx", "yyy", ...} to static const gchar ↵Bill Meier1-47/+66
*foo[mm] = {...} Add a comment about a possible bug: some strings in array are never used ? Do some minor reformatting. svn path=/trunk/; revision=30097
2009-09-23Build wiretap with cmake on OSX.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=30096
2009-09-23(Trivial) White space changesKovarththanan Rajaratnam1-246/+241
svn path=/trunk/; revision=30095
2009-09-23Quick fix for Bug #4040.Bill Meier1-2/+3
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4040 ToDo: Fix usage of gchar xxx[..][..] = {"aaa", "bbb", ...}; svn path=/trunk/; revision=30094
2009-09-23More fixes for OSX - might work now :-)Jörg Mayer4-0/+43
svn path=/trunk/; revision=30093
2009-09-23Propagate the changes to the .cnf file so they don't get lost when ↵Anders Broman2-12/+12
regenerating the dissector. Use col_set_str instead of col_add_fstr/col_add_str when adding constant strings to COL_INFO svn path=/trunk/; revision=30092
2009-09-23Hopefully fix wsutil build on OSX.Jörg Mayer1-0/+6
svn path=/trunk/; revision=30091
2009-09-23Don't col_clear(COL_PROTOCOL) followed by col_set_str(COL_PROTOCOL). A ↵Kovarththanan Rajaratnam4-4/+0
col_set_str() will clear (replace) any existing string (the fence still needs to be respected though) svn path=/trunk/; revision=30090
2009-09-23Use col_set_str instead of col_add_fstr/col_add_str when adding constant ↵Kovarththanan Rajaratnam10-20/+18
strings to COL_INFO svn path=/trunk/; revision=30089
2009-09-23Use col_set_str instead of col_add_fstri/col_add_str when adding constant ↵Kovarththanan Rajaratnam14-18/+18
strings to COL_PROTOCOL svn path=/trunk/; revision=30088
2009-09-23Change option menu to combo box.Anders Broman1-25/+17
svn path=/trunk/; revision=30087
2009-09-23Don't col_clear() followed by col_set_str(). A col_set_str() will clear ↵Kovarththanan Rajaratnam29-90/+4
(replace) any existing string (the fence still needs to be respected though) svn path=/trunk/; revision=30086
2009-09-23Fix the debug code somewhat, we do not have a clist any more.Anders Broman1-14/+23
svn path=/trunk/; revision=30085
2009-09-23Build more plugins with cmake.Jörg Mayer7-6/+426
svn path=/trunk/; revision=30084
2009-09-22-P is no longer invalid. We use it for the 'two pass analysis'Kovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=30083
2009-09-22Use col_set_str instead of col_add_fstr when adding constant strings to COL_INFOKovarththanan Rajaratnam17-42/+39
svn path=/trunk/; revision=30082
2009-09-22(Cosmetic) Reorder functionsKovarththanan Rajaratnam1-94/+94
svn path=/trunk/; revision=30081
2009-09-22(Trivial) Rework a comment slightly.Bill Meier1-3/+3
svn path=/trunk/; revision=30080
2009-09-22Fix: jyoung SVN #30065; Sort order at start of new capture.Anders Broman1-0/+6
svn path=/trunk/; revision=30079
2009-09-22Remove unused 'offset' parameterKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=30078
2009-09-22- new_packet_list_resize_column() if we get an empty string fromAnders Broman1-5/+6
packet_list_get_widest_column_string() (no visible row) don't change the colum width. - packet_list_moveto_end() selection no longer needed. svn path=/trunk/; revision=30077
2009-09-22Add initial support for "two pass analysis" in tshark. This allows tshark to ↵Kovarththanan Rajaratnam2-28/+284
arrive at the same protocol tree as the Wireshark GUI. Before this change tshark only supported a single scan over the file. This effectively means that packets cannot use data that are gathered from frames that appear after the current frame. By scanning twice we give the dissector the opportunity to make forward references. svn path=/trunk/; revision=30076