aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-02-23Add some debug info to help in diagnosing buildbot 'run tests' failuresBill Meier3-9/+48
svn path=/trunk/; revision=24447
2008-02-23Ensure tshark/wireshark always get good err msgs from dumpcap:Bill Meier3-42/+114
1. Clean up dumpcap 'as a child' err msg handling so that: - all err msgs are properly formatted when being sent back to the parent. - any log Critical, Warning, etc messages are sent back to parent and are properly formatted. 2. Change handling of -w <...> slightly in capture_opts.c so that wireshark provides a good error message if there is a 'write permissions' issue on the file. (Previously the error popup said only "Child exited with status 2"). This fixes bug #2288. Add some conditionalized DEBUG_CHILD_DUMPCAP code for dumpcap debug logging to a file. svn path=/trunk/; revision=24446
2008-02-23Correct a typo and at least print the name of type 148 and 149.Anders Broman2-4/+15
svn path=/trunk/; revision=24445
2008-02-23Put names on some more options solves part of bugAnders Broman2-17/+67
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2284 svn path=/trunk/; revision=24444
2008-02-23g_strncasecmp --> g_ascii_strncasecmpBill Meier1-1/+1
svn path=/trunk/; revision=24443
2008-02-23Fixed a check for custom column.Stig Bjørlykke1-3/+4
svn path=/trunk/; revision=24442
2008-02-23Add filter syntax check to custom column filter field. This will allowStephen Fisher1-0/+2
filter expressions such as filter == value, which won't work as a custom column. We may need to modify its behavior to prevent entire expressions from being entered. For the time being though, it does check the filter syntax itself as well. svn path=/trunk/; revision=24441
2008-02-22add an error message to the NSIS compiler output, if the MSVC_VARIANT ↵Ulf Lamping1-0/+1
setting is obviously wrong svn path=/trunk/; revision=24439
2008-02-22Improved custom columns with custom title.Stig Bjørlykke6-29/+151
Fixed a crash when adding an empty custom field. svn path=/trunk/; revision=24438
2008-02-22Have the uninstaller remove ws.css.Gerald Combs1-0/+1
svn path=/trunk/; revision=24437
2008-02-22Reduce the H1 font size a bit.Gerald Combs1-0/+1
svn path=/trunk/; revision=24436
2008-02-22From Evan via bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2293 : InJeff Morriss1-8/+8
epan/dissectors/packet-bacapp.c the BACnetErrorCode array contains incorrect enumeration mappings for BACnet error codes. Attached is a version of the file with the mappings straightened out. svn path=/trunk/; revision=24435
2008-02-22Fix CSS paths.Gerald Combs1-12/+12
svn path=/trunk/; revision=24434
2008-02-22From Balint Reczey via ↵Jeff Morriss1-1/+1
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2264 : fix IPv4 handling svn path=/trunk/; revision=24433
2008-02-22From Peter via http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2291 : ↵Jeff Morriss1-1/+1
libwiretap uses glib so add it to LIBADD. svn path=/trunk/; revision=24432
2008-02-22add rawshark.html to packaging and Wireshark help menuUlf Lamping4-0/+6
svn path=/trunk/; revision=24431
2008-02-22Fix a target.Gerald Combs1-1/+1
svn path=/trunk/; revision=24429
2008-02-22Use the docbook CSS for the man pages (which assumes your version of Gerald Combs5-36/+71
pod2html supports the "--css" flag). Package up the CSS file, and add missing HTML files where needed. svn path=/trunk/; revision=24428
2008-02-22Rawshark depends on libpcap. Make sure we enforce this in the configure Gerald Combs1-17/+32
script, just as we do with dumpcap. svn path=/trunk/; revision=24422
2008-02-22Check for existing cinfo in have_custom_cols().Stig Bjørlykke1-1/+1
This fixes the latest buildbot fuzz failures. svn path=/trunk/; revision=24421
2008-02-22Print integer values according to hfinfo->display.Stig Bjørlykke1-4/+171
svn path=/trunk/; revision=24420
2008-02-22Added FT_ABSOLUTE_TIME and FT_RELATIVE_TIME to custom columns.Stig Bjørlykke1-0/+9
svn path=/trunk/; revision=24419
2008-02-22Some custom column enhancements:Stig Bjørlykke1-2/+16
Use the value_string if defined for integer and boolean values. svn path=/trunk/; revision=24418
2008-02-22Some custom column fixes:Stig Bjørlykke2-3/+6
- In proto_tree_set_uint and proto_tree_set_int use value adjusted for bitmask. - Removed col_custom_set_fstr in proto_tree_set_boolean to get a correct adjusted value in proto_tree_set_uint. - Set a default column width shorter than COL_INFO. svn path=/trunk/; revision=24417
2008-02-22Fix compile errors if 'configure ... --without-pcap'Bill Meier2-3/+4
svn path=/trunk/; revision=24416
2008-02-22Add ability to make more field types into custom columns: FT_ETHER & FT_BYTES.Stephen Fisher1-1/+5
Also change display of FT_STRING(Z) to turn non-printable characters into backslash + number values. svn path=/trunk/; revision=24415
2008-02-22Use default numeric/text sort for custom columns also.Stephen Fisher1-1/+1
svn path=/trunk/; revision=24414
2008-02-22Use custom column check function for custom columns to make sure the dfilterStephen Fisher1-2/+2
is always primed when needed. This ensures more than just the first row has a custom column's information in it. svn path=/trunk/; revision=24413
2008-02-21Unkomment the now fixed value string...Anders Broman1-2/+0
svn path=/trunk/; revision=24412
2008-02-21Put back the use of g_ascii_strcasecmp(), so we don't get rudelyGuy Harris1-187/+190
surprised by, for example, "i" not comparing equal to "I" in Turkish locales. Make gMessageType local - it's not used as a global variable. Also, make it a pointer to const, so that we don't have to cast away the constness. dissect_giop_fragment() doesn't use the "header" argument, so get rid of it. Clean up indentation a bit. The first element of a value_string is the value, and the second argument is the string; fix up the initialization of the table of code set values. Fix a proto_tree_add_text() call to match the format and the arguments. svn path=/trunk/; revision=24411
2008-02-21From Wolf Neumann:Anders Broman1-30/+251
GIOP reassembly fails when first packet of a PDU is received Out-of-Order http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1453 The patch changed to use value_string but not all values included in the current value_string. svn path=/trunk/; revision=24410
2008-02-21Add code to set ssn in the preferenses and make it compile.Anders Broman2-9/+74
svn path=/trunk/; revision=24409
2008-02-21Fix Bug Enable int64, uint64 and ipv4 type fields for the Lua dissectorsAnders Broman1-1/+7
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2264 svn path=/trunk/; revision=24408
2008-02-21Constify some arguments.Guy Harris6-6/+6
svn path=/trunk/; revision=24407
2008-02-21From Karl Heinz Wolf:Jaap Keuter1-2/+102
This patch decodes the Civic Address Types (CATypes) for Civic Addresses Configuration Information. This GEOCONF_CIVIC DHCP option number 99 is defined in RFC 4776. svn path=/trunk/; revision=24406
2008-02-21Fix two compilation errorsBill Meier1-2/+2
svn path=/trunk/; revision=24405
2008-02-20Convert any supplied encapsulation from libpcap to wiretap so that DLTs otherGerald Combs1-1/+7
than Ethernet work. svn path=/trunk/; revision=24403
2008-02-20Added logarithmic y axis scale option.Stig Bjørlykke1-28/+99
svn path=/trunk/; revision=24402
2008-02-20When doing random error mutation, protect DCT2000Martin Mathieson1-43/+63
meta information that is found at the beginning of the data - this lets me fuzztest my .out files properly. Also make some whitespace more consistent. svn path=/trunk/; revision=24401
2008-02-20Update manuf and faqJörg Mayer3-133/+420
svn path=/trunk/; revision=24400
2008-02-20Fix some formattingStephen Fisher1-2/+3
svn path=/trunk/; revision=24399
2008-02-20Really fix pcapng timestamp reading and writing this time.Stephen Fisher1-14/+5
svn path=/trunk/; revision=24398
2008-02-19Fix some unused warningsJörg Mayer1-1/+3
svn path=/trunk/; revision=24397
2008-02-19Use the right 4 bits and avoid the overflow of an 8 bit valueJörg Mayer1-1/+1
svn path=/trunk/; revision=24396
2008-02-19Update todo sectionJörg Mayer1-0/+2
svn path=/trunk/; revision=24395
2008-02-19Add more 3GPP AVP:sAnders Broman1-6/+36
svn path=/trunk/; revision=24394
2008-02-19Switch to the "oooh shiny" splash image.Gerald Combs2-281/+879
svn path=/trunk/; revision=24393
2008-02-19From pizza_4u at qmx.net: Extend netscreen2dump.py to work with SSG520Bill Meier1-1/+3
Also: Add $ID$ svn path=/trunk/; revision=24391
2008-02-19Add 'executable' property to a few .pl and .py filesBill Meier7-0/+0
svn path=/trunk/; revision=24390
2008-02-19Removed the <?xml> tag.Stig Bjørlykke1-1/+0
svn path=/trunk/; revision=24389