aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of check_col();Anders Broman2010-01-178-130/+96
| | | | svn path=/trunk/; revision=31552
* [Automatic manuf and enterprise-numbers update for 2010-01-17]Gerald Combs2010-01-172-10/+271
| | | | svn path=/trunk/; revision=31549
* Added packet-hp-erm.c.Stig Bjørlykke2010-01-171-0/+1
| | | | svn path=/trunk/; revision=31548
* Dissector for HP encapsulated remote mirroring.Bill Meier2010-01-172-0/+135
| | | | svn path=/trunk/; revision=31547
* Get rid of check_col();Anders Broman2010-01-1713-222/+196
| | | | svn path=/trunk/; revision=31546
* Fix a comment.Anders Broman2010-01-171-1/+1
| | | | svn path=/trunk/; revision=31545
* Get rid of check_col();Anders Broman2010-01-1719-279/+163
| | | | svn path=/trunk/; revision=31544
* Update to version 9.1.0Anders Broman2010-01-175-1069/+4077
| | | | svn path=/trunk/; revision=31543
* Update URL in comments.Stephen Fisher2010-01-161-1/+1
| | | | svn path=/trunk/; revision=31542
* Use G_GSIZE_MODIFIER rather than casting to "gulong" and printing withGuy Harris2010-01-161-2/+2
| | | | | | "%lu". svn path=/trunk/; revision=31541
* tvb_get_ntohl() doesn't return a long on any platform (it returns aGuy Harris2010-01-161-1/+1
| | | | | | | | guint32, and on no platform supported by GLib, and thus on no platform supported by Wireshark, does a guint32 have to be an unsigned long), so there's no need to cast it to long and print it with %lld. svn path=/trunk/; revision=31540
* For now: Add hack so \r ignored when win-setup.sh is invoked from a cygwin ↵Bill Meier2010-01-151-0/+2
| | | | | | | | | | | | | | | | bash shell. See: http://www.mail-archive.com/cygwin-announce@cygwin.com/msg01711.html Note: another way to do this (as described in the above) might be to "export the environment variable SHELLOPTS with igncr included in it. It is read-only from within bash, but you can set it before invoking bash; once in bash, it auto-tracks the current state of 'set -o igncr' or 'shopt -s igncr'. If exported, then all bash child processes inherit the same option settings". svn path=/trunk/; revision=31538
* Show spare bits in decimal, not as booleans.Jeff Morriss2010-01-151-2/+2
| | | | svn path=/trunk/; revision=31537
* Change col_set_str() call to col_add_str() since the string being passedStig Bjørlykke2010-01-151-1/+1
| | | | | | can be a ep_alloc from val_to_str(). svn path=/trunk/; revision=31536
* Changed val_to_str() to val_to_str_const() when used with col_set_str().Stig Bjørlykke2010-01-151-1/+1
| | | | svn path=/trunk/; revision=31535
* Change col_set_str() call to col_add_str() since the string being passedStig Bjørlykke2010-01-151-1/+2
| | | | | | can be a ep_alloc from val_to_str(). svn path=/trunk/; revision=31534
* Get rid of check_col();Anders Broman2010-01-151-73/+35
| | | | svn path=/trunk/; revision=31533
* From Chris Costa:Anders Broman2010-01-151-35/+24
| | | | | | | tcp.analysis.acks_frame and tcp.analysis.ack_rtt is not reliable. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3311 svn path=/trunk/; revision=31532
* From Didier Gautheron:Anders Broman2010-01-151-15/+19
| | | | | | | | Don't use packet without data in sequence analysis. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2054 svn path=/trunk/; revision=31531
* From Didier Gautheron:Anders Broman2010-01-151-18/+37
| | | | | | | | Wlan stat: sorting on broadcast is broken if MAC name resolution is disabled. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4398 svn path=/trunk/; revision=31530
* If we're using threads, time out when reading the file header.Gerald Combs2010-01-141-5/+26
| | | | svn path=/trunk/; revision=31529
* Set some properties.Gerald Combs2010-01-141-0/+0
| | | | svn path=/trunk/; revision=31528
* Avoid assertion failure when adding a column of typeGerasimos Dimitriadis2010-01-141-0/+3
| | | | | | IEEE 802.11 TX rate. svn path=/trunk/; revision=31527
* Fix for Bug 3747:Gerasimos Dimitriadis2010-01-141-5/+5
| | | | | | use FT_FLOAT for the radiotap data rate because of .5 Mbps granularity svn path=/trunk/; revision=31526
* Set correct locale in make-version.pl instead of in Makefiles.Stig Bjørlykke2010-01-144-14/+20
| | | | | | | | Added back add_custom_command for svnversion.h. Removed unnecessary text2pcap_CLEAN_FILES. Fix indent for ps.c command. svn path=/trunk/; revision=31525
* Fix several buffer overflows found by babi babi. Replace a lot of manualGerald Combs2010-01-141-284/+82
| | | | | | | | | fetching and displaying with proto_tree_add_item(). Use get_dns_name() instead of lwres_get_dns_name(), which fixes a separate issue. svn path=/trunk/; revision=31524
* Remove redundant calls to check_col() in the .cnf files and regenerate.Anders Broman2010-01-134-39/+25
| | | | svn path=/trunk/; revision=31523
* Display correct chunk type for unknown chunks.Michael Tüxen2010-01-131-3/+3
| | | | svn path=/trunk/; revision=31522
* check_col.diffAnders Broman2010-01-1310-27/+18
| | | | | | | Remove redundant calls to check_col() in the template files and regenerate. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31521
* From Didier Gautheron:Anders Broman2010-01-131-5/+2
| | | | | | | | | | fix a memory leak by using se_strdup rather for g_strdup for column text. replace col_clear() follow by col_add_str() with the faster col_set_str() remove redundant check_col() call https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31520
* From Didier Gautheron:Anders Broman2010-01-1376-421/+185
| | | | | | | | check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
* Try to fix indentation sligtly.Anders Broman2010-01-131-66/+67
| | | | svn path=/trunk/; revision=31518
* From Didier Gautheron:Anders Broman2010-01-1332-713/+154
| | | | | | | | | | | col_clear.diff Remove calls to col_clear : - called twice. - before functions which also clear the column - by replacing col_clear + col_append_xxx with col_add_xxx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31517
* Add a target to always run make-version.pl to check if svn version has changed.Stig Bjørlykke2010-01-131-3/+10
| | | | svn path=/trunk/; revision=31516
* Cleanup the SVN properties of the images.Jaap Keuter2010-01-131-878/+878
| | | | svn path=/trunk/; revision=31515
* Try to fix a memory leak.Anders Broman2010-01-131-0/+1
| | | | svn path=/trunk/; revision=31514
* Improved the Interface Options dialog:Stig Bjørlykke2010-01-131-20/+25
| | | | | | | | - Use toggle checkbox for Hide? column - Adjusted default column width (device name is shorter on UN*X) - Increased dialog height svn path=/trunk/; revision=31513
* Display the capture filter in the main window title when capturing.Stig Bjørlykke2010-01-131-20/+20
| | | | svn path=/trunk/; revision=31512
* From Didier Gautheron:Anders Broman2010-01-131-7/+8
| | | | | | | Fix a memory leak. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3917 svn path=/trunk/; revision=31511
* Don't try to build NSIS installer if MAKENSIS not defined in config.nmake.Bill Meier2010-01-122-3/+23
| | | | | | | Fixes Bug #3362. Also: Use _FORCE_ instead of FORCE as dummy target. svn path=/trunk/; revision=31510
* Use a more correct length for hf_bssgp_ie_type and hf_bssgp_bvci,Stig Bjørlykke2010-01-121-2/+2
| | | | | | to try fixing a buildbot run-randpkt failure. svn path=/trunk/; revision=31509
* From Gonzalo Casas:Anders Broman2010-01-123-19/+135
| | | | | | | MMS TimeOfDay display. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4387 svn path=/trunk/; revision=31508
* Use g_snprintf()Anders Broman2010-01-121-2/+2
| | | | svn path=/trunk/; revision=31507
* Use snprintf() to pass checkAPIMartin Mathieson2010-01-121-2/+2
| | | | svn path=/trunk/; revision=31506
* From Elliott: Add contrast to the border.Gerald Combs2010-01-122-0/+0
| | | | svn path=/trunk/; revision=31505
* Minor fix: highlight a command argument as part of the command.Bill Meier2010-01-121-1/+1
| | | | svn path=/trunk/; revision=31504
* Append to the SDU field only once (instead of for each byte!).Martin Mathieson2010-01-121-2/+5
| | | | svn path=/trunk/; revision=31503
* Update to RFC5035.Stig Bjørlykke2010-01-127-138/+296
| | | | svn path=/trunk/; revision=31502
* Update to RFC5652.Stig Bjørlykke2010-01-127-102/+196
| | | | svn path=/trunk/; revision=31501
* Update to RFC3369.Stig Bjørlykke2010-01-127-66/+432
| | | | svn path=/trunk/; revision=31500