aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* From Jakub Zawadzki:Anders Broman2010-05-023-20/+69
| | | | | | | Fix copy&paste error + add support for proto_tree_add_bits API https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4413 svn path=/trunk/; revision=32634
* From Jakub Zawadzki:Anders Broman2010-05-021-18/+17
| | | | | | | patch for ip.flags (using proto_tree_add_bits_item). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4413 svn path=/trunk/; revision=32633
* [Automatic manuf and enterprise-numbers update for 2010-05-02]Gerald Combs2010-05-022-6/+262
| | | | svn path=/trunk/; revision=32630
* Don't type prune the data_ptr pointer for UAT.Stig Bjørlykke2010-05-022-2/+2
| | | | svn path=/trunk/; revision=32629
* Don't type prune the data_ptr pointer for UAT.Stig Bjørlykke2010-05-022-4/+4
| | | | svn path=/trunk/; revision=32628
* From Hitoshi Irino:Jaap Keuter2010-05-021-39/+72
| | | | | | | | | | The function "dissect_v9_pdu" of "epan/dissectors/packet-netflow.c" decodes NetFlow v9 packets and IPFIX packets with same logic. But, the "scope field" is different between NetFlow v9 and IPFIX. NetFlow v9 has only 5 kind of scopes. On the other hand, many Information Elements can be used as scope fields in IPFIX packets. svn path=/trunk/; revision=32627
* Fix for bug 4723:Jaap Keuter2010-05-022-2/+2
| | | | | | Don't type prune the data_ptr pointer for UAT. svn path=/trunk/; revision=32626
* Added some more dissecting.Stig Bjørlykke2010-05-021-8/+44
| | | | svn path=/trunk/; revision=32625
* Disable ok button when no name entered.Stig Bjørlykke2010-05-021-0/+9
| | | | svn path=/trunk/; revision=32624
* Added tooltips for UAT column headers.Stig Bjørlykke2010-05-021-0/+5
| | | | svn path=/trunk/; revision=32623
* Dissect 3GPP AVP 5 3GPP-GPRS Negotiated QoS profile.Anders Broman2010-05-012-2/+22
| | | | svn path=/trunk/; revision=32622
* Replace GtkClist in uat_gui.c with GtkTreeView+GtkListStore. Pop up theGerald Combs2010-04-303-29/+167
| | | | | | | edit window when an item is double-clicked. Add a couple of convenience routines to gui_utils.c. svn path=/trunk/; revision=32621
* Revert rev 32519 for now: it is making the dissector bug a little too ↵Jeff Morriss2010-04-301-1/+3
| | | | | | obvious. It may make sense to put the check back in once the bug (tracked via 4698) is fixed. svn path=/trunk/; revision=32620
* Pick up other check from the almost-identical routine inGuy Harris2010-04-301-0/+9
| | | | | | | | epan/dfilter/scanner.l. (The common code should be in a utility routine.) svn path=/trunk/; revision=32619
* Fix comment.Guy Harris2010-04-301-1/+1
| | | | svn path=/trunk/; revision=32618
* Fix up indentation a bitJeff Morriss2010-04-301-11/+11
| | | | svn path=/trunk/; revision=32617
* Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1696 :Jeff Morriss2010-04-301-12/+57
| | | | | | | | | | | | The change put in with rev 11382 meant that, on 64-bit systems, we could not parse negative numbers into integers (since -1 taken as an unsigned 64-bit number is (significantly) larger than G_MAX_UINT32). To fix this, split the val_from_unparsed() routine for integers into two routines: one for signed and one for unsigned; each routine can then do the appropriate "is this bigger than what fits in a *32?" test. svn path=/trunk/; revision=32616
* Add a catch-all if statement for column formats that are filled in byGerald Combs2010-04-301-26/+9
| | | | | | dissectors. Fixes bug 4732. svn path=/trunk/; revision=32615
* From Chris Maynard: Fix Bug #1292: "Win32: confusing setup target warning if ↵Bill Meier2010-04-301-2/+5
| | | | | | | | cl.exe is not in path" See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1292 svn path=/trunk/; revision=32614
* Fix a gcc -Wshadow warning.Bill Meier2010-04-301-12/+12
| | | | svn path=/trunk/; revision=32613
* Fix a gcc -Wshadow warning.Bill Meier2010-04-302-10/+10
| | | | svn path=/trunk/; revision=32612
* Trivial: Update AUTHORS entry, remove out-of-date comments, minor formattingMartin Mathieson2010-04-304-11/+7
| | | | svn path=/trunk/; revision=32611
* Clean up some calls to use the same offset as the call to put the parentGuy Harris2010-04-301-175/+192
| | | | | | | | | into the protocol tree. Put the cases for various Radiotap data items into numerical order by the bit number. svn path=/trunk/; revision=32610
* Several dissectors fill in custom custom data in the source andGerald Combs2010-04-292-3/+2
| | | | | | destination address columns. Don't clobber it in the new packet list. svn path=/trunk/; revision=32609
* Terminate a string so that strchr doesn't wander off. Hopefully fixes bugsGerald Combs2010-04-291-1/+1
| | | | | | 4725 and 4728. svn path=/trunk/; revision=32608
* Remove an unused variable.Gerald Combs2010-04-291-1/+0
| | | | svn path=/trunk/; revision=32607
* From Mike Morrin:Anders Broman2010-04-2912-220/+768
| | | | | | | Dissection of BSSMAP IEs: Old BSS to New BSS Info and New BSS to Old BSS Info https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4712 svn path=/trunk/; revision=32606
* Forgot a //Anders Broman2010-04-291-1/+0
| | | | svn path=/trunk/; revision=32605
* Simplify dissect_sip_authorization_item().Anders Broman2010-04-291-46/+14
| | | | svn path=/trunk/; revision=32604
* Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4308 :Jeff Morriss2010-04-291-25/+46
| | | | | | | | Make a function that checks if the user is running as root or if npf.sys isn't loaded (on Windows) and call it *after* showing the main window so that the popup (if any) shows up above the main window. svn path=/trunk/; revision=32603
* Do the header matching on lower case.Anders Broman2010-04-291-20/+15
| | | | svn path=/trunk/; revision=32602
* Make the indentation consistent.Jeff Morriss2010-04-291-122/+185
| | | | svn path=/trunk/; revision=32601
* autentification info gives malformed packet if no space before "="Anders Broman2010-04-291-3/+28
| | | | svn path=/trunk/; revision=32600
* Make a variable a guint8* instead of a char* since it a) holds TVB data and ↵Jeff Morriss2010-04-293-9/+9
| | | | | | b) matches what tvb_new_child_real_data() wants for its 2nd argument. This cleans up a warning from the Sun compiler. svn path=/trunk/; revision=32599
* Make a variable a guint8* instead of a char* since it a) holds TVB data and ↵Jeff Morriss2010-04-291-1/+1
| | | | | | b) matches what tvb_new_child_real_data() wants for its 2nd argument. This cleans up a warning from the Sun compiler. svn path=/trunk/; revision=32598
* Use strchr() instead of index()--Windows doesn't appear to have the latter.Jeff Morriss2010-04-291-7/+7
| | | | svn path=/trunk/; revision=32597
* From Michael Speck via ↵Jeff Morriss2010-04-291-0/+4
| | | | | | | | | | | | | | | | https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4726 : If "Help -> About Wireshark" is selected from Wireshark's main menu an error message pops up: Could not open file "<DevelopmentPath>\Wireshark_Source\wireshark-gtk2\COPYING": No such file or directory The attached patch handles this situation by looking for COPYING.txt instead of COPYING on windows systems. svn path=/trunk/; revision=32596
* It is becomming more common that iscsi vendors use iscsi-redirectors and ↵Ronnie Sahlberg2010-04-291-9/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | redirect initiators to a different host/port and thus often redirect to non-3260. The heuristics to detect iscsi is quite weak since there is very little in the average iscsi header that can be used to semi-reliably identify something as iscsi and not random data/something else. As such, the heuristics also use/rely on the port being 3260 in order to reduce the otherwise massive numbver of false positives that would arise. Add decoding of the text key/value pairs and trigger on TargetAddress. This field would describe a address/port where we can quite reliably assume that this traffic is indeed iscsi and not something else. When seeing the iscsi redirect/TargetAddress, use this as a signalling hint and register a conversation dissector for TCP to that address/port so that any future packet to/from this port is sent to the iscsi dissector. If the signalling/redirect is not in the capture, wireshark will not detect the traffic as iscsi and the user will have to use DecodeAs. and manually \set it to iscsi. svn path=/trunk/; revision=32595
* Add snaplen to capinfos output. Idea from Chris Maynard on -dev.Stephen Fisher2010-04-291-1/+31
| | | | svn path=/trunk/; revision=32594
* Delay starting the resolv_update_cb until the main window has been displayedJeff Morriss2010-04-291-8/+8
| | | | | | | | | | This avoids this error: (lt-wireshark:16779): Gdk-CRITICAL **: gdk_window_invalidate_rect: assertion `window != NULL' failed before the main window has been drawn if you've got a personal hosts file. svn path=/trunk/; revision=32593
* Use proto_add_item() and clean up the code a bit.Anders Broman2010-04-281-78/+57
| | | | svn path=/trunk/; revision=32592
* Altho no tabs, use tab-width=8 anyway.Bill Meier2010-04-281-3/+3
| | | | svn path=/trunk/; revision=32591
* Use consistent indentation;Bill Meier2010-04-281-198/+198
| | | | | | Altho no tabs use tab-width=8 anyway. svn path=/trunk/; revision=32590
* Replace GtkCList by GtkTreeView.Jaap Keuter2010-04-281-312/+515
| | | | svn path=/trunk/; revision=32589
* Let's not use tabs with tab-width=4; Convert tabs to spaces (with indent=4).Bill Meier2010-04-282-1260/+1260
| | | | | | Also: use consistent indentation & remove any trailing blanks. svn path=/trunk/; revision=32588
* Remove trailing blanks; Also: Altho tabs expanded, use tab-width=8 anyway.Bill Meier2010-04-285-283/+283
| | | | svn path=/trunk/; revision=32587
* Let's not use tabs with tab-width=4; Converts tabs to spaces (with indent=4).Bill Meier2010-04-283-5681/+5681
| | | | | | Also: use consistent indentation. svn path=/trunk/; revision=32586
* From jmmikkel:Jaap Keuter2010-04-281-0/+8
| | | | | | Set the sequence number for the next PDU if the current frame contains both the finish of the previous and the complete next one. svn path=/trunk/; revision=32585
* From Jakub Zawadzki:Anders Broman2010-04-281-16/+1
| | | | | | - use Glibc:s highly optimized memchr() svn path=/trunk/; revision=32584
* From Jakub Zawadzki:Anders Broman2010-04-281-15/+13
| | | | | | - optimize guint8_pbrk(). svn path=/trunk/; revision=32583