aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-04-06Update to reflect current reality.Gerald Combs1-1/+0
svn path=/trunk/; revision=32404
2010-04-06Fix bug: HI2 --> HI2OperationsBill Meier1-1/+1
svn path=/trunk/; revision=32403
2010-04-06Add Windows 7(Untested).Anders Broman1-2/+7
svn path=/trunk/; revision=32402
2010-04-06Get rid of check_colAnders Broman9-196/+113
svn path=/trunk/; revision=32401
2010-04-06Don't use %s as the format string in val_to_str().Jeff Morriss8-9/+9
svn path=/trunk/; revision=32400
2010-04-06Mention elinks as an alternative to lynx [on *nix].Bill Meier1-3/+3
svn path=/trunk/; revision=32399
2010-04-06Don't use %s as the format string in val_to_str(). This fixes the fuzz ↵Jeff Morriss1-1/+1
failure in bug 4646. svn path=/trunk/; revision=32398
2010-04-06clear the store list before inserting all rawsTomas Kukosa1-0/+1
svn path=/trunk/; revision=32397
2010-04-06The third argument to val_to_str() is a format string that gets passedGuy Harris1-4/+1
the value that couldn't be mapped to a string - it's an integer and needs to be printed with an integer format. Fixes bug 4644. svn path=/trunk/; revision=32396
2010-04-06Fix gcc -Wshadow warnings.Bill Meier1-5/+5
svn path=/trunk/; revision=32395
2010-04-06Give David Aggeler credit for the VMLAB dissector (and also for ↵Bill Meier1-1/+5
enchancements to the DICOM dissector). svn path=/trunk/; revision=32394
2010-04-05Treat the first block we read, when opening, specially:Guy Harris1-20/+60
1) if it's not an SHB, just say "this is not a pcap-ng file", don't try to process it (we can't process it, as we haven't finished setting up all the state information yet); 2) if it has the right SHB type code, but isn't a valid SHB, just say "this is not a pcap-ng file". For all other SHB's, treat anything that renders it invalid as an error. svn path=/trunk/; revision=32393
2010-04-05"Web Cache Coordination Protocol" ==> "Web Cache Communication Protocol"Bill Meier2-3/+3
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4643 svn path=/trunk/; revision=32392
2010-04-05As requested by David Aggeler:Bill Meier1-4/+4
About hf_, in { &hf_vmlab_flags_fragment, { "More Fragments", "vmlab.fragment", FT_UINT8, BASE_HEX, VALS(fragment_vals), 0x04, NULL, HFILL }}, I'd like to keep BASE_NONE to avoid the number to show in brackets. svn path=/trunk/; revision=32391
2010-04-05Note that -X stdin_descr stretches the original intent of the -X option.Gerald Combs1-0/+6
svn path=/trunk/; revision=32390
2010-04-05Disable the possible use of 'links' to generate release-notes.txtBill Meier2-7/+11
"Fixes" Bug #4631. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4631 svn path=/trunk/; revision=32389
2010-04-05Get rid of a bunch of check_col().Anders Broman41-580/+314
svn path=/trunk/; revision=32388
2010-04-05Add coment about why 'links' fails if it is used to generate release-notes.txt Bill Meier1-1/+1
svn path=/trunk/; revision=32387
2010-04-05Remove 'if (tree)' around code so that ethertype always gets called with ↵Bill Meier1-44/+40
correct values. svn path=/trunk/; revision=32386
2010-04-05Cleanup:Bill Meier1-80/+72
- hf[] array:fix some "Display" fields: eg: FT_BOOLEAN to BASE_HEX - There's no prefs: thus no need for prefs_register_protocol - whitespace; ... svn path=/trunk/; revision=32385
2010-04-05Put volatile back - without it, the compiler warns you.Guy Harris1-1/+1
svn path=/trunk/; revision=32384
2010-04-05Remove volatileKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=32383
2010-04-05Get rid of unused variable.Guy Harris1-2/+0
svn path=/trunk/; revision=32382
2010-04-05Added packet-vmlab.cStig Bjørlykke1-0/+1
svn path=/trunk/; revision=32381
2010-04-05From David Aggeler:Anders Broman2-0/+200
Support for VMware Lab Manager Host Spanning https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4186 svn path=/trunk/; revision=32380
2010-04-05From David Aggeler:Anders Broman1-1/+1
Fixed wrong declaration in packet-vlan.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4186 svn path=/trunk/; revision=32379
2010-04-05From David Aggeler:Anders Broman2-117/+118
Added 0x88DE to etypes.h Added ETHERTYPE_VMLAB https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4186 svn path=/trunk/; revision=32378
2010-04-05From Toshihiro KATAOKA:Anders Broman2-3/+25
The decoded MSISDN AVP in 3GPP diameter AVP and the decoded MSISDN IE in 3GPP GTPv2 IE are not correct. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4638 svn path=/trunk/; revision=32377
2010-04-04Replace GtkCList by GtkTreeView.Jaap Keuter1-288/+393
svn path=/trunk/; revision=32376
2010-04-04From Jelmer Vernooij via bug 4640:Stig Bjørlykke3-0/+168
This patch adds a dissector for the Git smart server protocol (git://), splitting the stream up into packets. svn path=/trunk/; revision=32375
2010-04-04[Automatic manuf and enterprise-numbers update for 2010-04-04]Gerald Combs2-17/+231
svn path=/trunk/; revision=32372
2010-04-04packet-ssl-utils.h now includes <stdio.h> itself.Guy Harris1-2/+0
svn path=/trunk/; revision=32371
2010-04-04Fix to match changes to the signatures of the real versions of thoseGuy Harris1-6/+7
functions. svn path=/trunk/; revision=32370
2010-04-04Needs #include <stdio.h>.Bill Meier1-1/+2
svn path=/trunk/; revision=32369
2010-04-04packet-ssl-utils.h uses "FILE *"; at least on Solaris, we need toGuy Harris1-0/+2
include <stdio.h> to get "FILE *" declared. svn path=/trunk/; revision=32368
2010-04-03Remove unneeded #include <stdio.h>Bill Meier312-341/+0
svn path=/trunk/; revision=32367
2010-04-03(Trivial): indentation & whitespace cleanup.Bill Meier4-456/+461
svn path=/trunk/; revision=32366
2010-04-03 From Yaniv Kaul: constify parametersBill Meier31-733/+733
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4422 From me: Fix a number of instances where the function prototype or the function definition wasn't changed so there was a mismatch thus causing Windows (but not gcc) compilation errors. svn path=/trunk/; revision=32365
2010-04-03Make UDP Multicast Stream dialog work again.Jaap Keuter1-2/+2
svn path=/trunk/; revision=32364
2010-04-02Fix compile error caused by the previous commit.Balint Reczey1-2/+5
svn path=/trunk/; revision=32363
2010-04-02Fix crash when double clicking in packet list area before capturing any packet.Balint Reczey1-0/+5
The crash does not happen when using the new packet list. svn path=/trunk/; revision=32362
2010-04-02Revert SVN #32360 until Windows compilation errors corrected.Bill Meier30-679/+679
svn path=/trunk/; revision=32361
2010-04-02From Yaniv Kaul: constify parametersBill Meier30-679/+679
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4422 svn path=/trunk/; revision=32360
2010-04-02Make the test compile.Jaap Keuter1-6/+6
svn path=/trunk/; revision=32359
2010-04-02Add -X stdin_descr to the man page.Gerald Combs1-0/+3
svn path=/trunk/; revision=32358
2010-04-01Keep a copy of the interface description and capture filter around so thatGerald Combs7-11/+76
we can use it in the main window title during and after capture. Add a "-X" option for providing a description for stdin. svn path=/trunk/; revision=32357
2010-04-01From sangaran:Anders Broman4-8/+92
8-bit Bit Flag decoder method needed in wimaxasncp plugin dissecto. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4608 svn path=/trunk/; revision=32356
2010-04-01From KATAOKA Toshihiro:Anders Broman2-7/+31
Protocol preference for x2ap port. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4634 svn path=/trunk/; revision=32355
2010-04-01Fix Tag value wrong in ansi_map.asn file for ServiceId in ServiceRequest ↵Anders Broman2-2/+2
message. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4637 svn path=/trunk/; revision=32354
2010-04-01From Aniruddha A: ANCP (Access Node Control Protocol) Dissector.Bill Meier4-1/+958
see: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4590 From me: A few minor changes: - Make ancp_info a local variable rather than a static global variable; - Use Stats ! ANCP rather than Stats ! ANCP ! Packet Types. svn path=/trunk/; revision=32353