aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-03-30From Ryuji Somegawa: fix AirLink record dissection.Guy Harris1-79/+117
svn path=/trunk/; revision=10523
2004-03-30From Lars Roland: Tethereal version of SIP statistics tap, and fixes toGuy Harris5-300/+730
the Ethereal version. svn path=/trunk/; revision=10522
2004-03-30From Lars Roland: have "make clean" and "make distclean" clean up theGuy Harris1-1/+13
new Cisco VoIP plugins. svn path=/trunk/; revision=10521
2004-03-30From Duncan Sargeant: include "moduleinfo.h" so that the plugins get theGuy Harris3-3/+9
right version number. svn path=/trunk/; revision=10520
2004-03-30From Michael Kopp: add support for vendor-specific items for the CiscoGuy Harris1-1/+389
VPN 3000 Concentrator, Cisco VPN 5000 Concentrator and Cisco Broadband Service Manager. svn path=/trunk/; revision=10519
2004-03-30The extension ID field in a Private Extension IU is 2 bytes, so theGuy Harris1-9/+12
length of the IU must be at least 2 bytes in order to dissect the contents. Just use "proto_tree_add_item()" to add the value of the private extension, and do so only if it's not zero-length. svn path=/trunk/; revision=10518
2004-03-30Fix the length used for the protocol tree item for Mobile IPv6 options.Guy Harris1-2/+2
svn path=/trunk/; revision=10517
2004-03-30From Devin Heitmueller: put back the info level for the user infoGuy Harris1-1/+15
request. svn path=/trunk/; revision=10516
2004-03-30Add the mask for an NT ACL ACE to the summary list for each ACE. ThisRichard Sharpe8-88/+47
means we don't have to expand the ACE to see what the permission mask is. There are a couple of other places where this could be used, but I have not done anything about them. svn path=/trunk/; revision=10515
2004-03-29It *appears* that if you don't explicitly request that a file chooserGuy Harris1-2/+1
dialog be centered on its parent, it still gets so centered; we remove the call to do so from the GTK+ >= 2.4 file selection dialog creation code. svn path=/trunk/; revision=10514
2004-03-29In a "save" dialog, the "yes" button should be a "Save" button, not anGuy Harris1-2/+6
"Open" button. svn path=/trunk/; revision=10513
2004-03-29Add another wrapper routine, "file_selection_set_extra_widget()", to setGuy Harris3-29/+24
the "extra options" portion of a file selection dialog, and use it rather than #if'ed code. svn path=/trunk/; revision=10512
2004-03-29Make "file_selection_new()" take as its second argument anGuy Harris6-130/+80
Ethereal-defined indication of the action (open vs. save), regardless of whether we're building for GTK+ >= 2.4 or not; we just ignore the argument in pre-2.4 GTK+. Use "file_selection_new()" rather than #if'ed code to use it or "gtk_file_chooser_dialog_new()" for GTK+ >= 2.4 and "gtk_file_selection_new()" or it for pre-2.4 GTK+. Add a "file_selection_set_current_folder()" routine that does the appropriate thing depending on whether we're GTK+ >= 2.4 or not, and use that rather than #if'ed code to use "gtk_file_chooser_set_current_folder()" or "gtk_file_selection_set_filename()". svn path=/trunk/; revision=10511
2004-03-28From Jouni Malinen:Guy Harris1-6/+22
Small changes for EAPOL-Key dissector for IEEE 802.11i/RSN: - add Encrypted Key Data flag for key info - do not try to parse EAPOL-Key Key Data if it is encrypted (RSN: Encrypted Key Data flag, WPA: Group Key) - Key Index and Key ID are reserved in RSN svn path=/trunk/; revision=10510
2004-03-27minor code cleanup, including removed MSVC warningsUlf Lamping2-20/+15
svn path=/trunk/; revision=10509
2004-03-27Fix some aclocal warnings during autogen.shJörg Mayer4-4/+4
svn path=/trunk/; revision=10508
2004-03-27Some aclocal warning fixes during autogen.shJörg Mayer2-18/+18
svn path=/trunk/; revision=10507
2004-03-27From Ronnie Sahlberg: RST and FIN segments are neither zero-windowGuy Harris1-5/+12
packets nor duplicate ACKs. svn path=/trunk/; revision=10506
2004-03-27OK, I'm impatient. In case of problems, I'm to blame, not Olivier.Jörg Mayer2-11/+95
Olivier Biot: Merge epan/configure.in back into configure.in Leave epan/confiugre.in and epan/acinclude.m4 in case we need to undo this. svn path=/trunk/; revision=10505
2004-03-27From Gisle Vanem: add a "this is a generated file" comment to the outputGuy Harris1-1/+5
of process-x11-fields. svn path=/trunk/; revision=10504
2004-03-27From Michael Lum:Guy Harris11-177/+2289
ANSI IS-801 support; dissect more GSM supplementary services messages and fields. svn path=/trunk/; revision=10503
2004-03-27Use the new GtkFileChooserDialog when built with gtk+ 2.4Olivier Abad6-98/+355
svn path=/trunk/; revision=10502
2004-03-27From Mark C. Brown: add support for iether (dual-port gigabit) cards inGuy Harris2-2/+4
nettl files. svn path=/trunk/; revision=10501
2004-03-27From Lars Roland: use the generic filter dialog for the SIP, HTTP, WSP,Guy Harris7-446/+74
and BOOTP taps. Get rid of the "dlg" variable in some of those taps - it's never set, so it's always null, and nothing useful is done with it if it's null. Make static some variables and functions not used outside the source file in which they're defined. svn path=/trunk/; revision=10500
2004-03-260.10.3 final changes: try #2.Gerald Combs1-0/+25
svn path=/trunk/; revision=10498
2004-03-26Call plugin_address_table_init() before proto_register_protocol().Gerald Combs1-3/+3
svn path=/trunk/; revision=10497
2004-03-26Include packet-sip.h in the release.Guy Harris1-1/+2
svn path=/trunk/; revision=10496
2004-03-26Add packet-sip.hGerald Combs1-0/+35
svn path=/trunk/; revision=10495
2004-03-26Final changes for the 0.10.3 (codename: "Ides of March") release.Gerald Combs2-673/+2314
svn path=/trunk/; revision=10494
2004-03-26From Martin Mathieson: SIP statistics tap.Guy Harris4-10/+804
svn path=/trunk/; revision=10493
2004-03-26Fix a typo.Guy Harris3-27/+27
Clean up white space. svn path=/trunk/; revision=10492
2004-03-26Update for Tomas Kukosa's new APIs to get the parent and theGuy Harris5-1/+14
nth-grandparent-up for a protocol tree item and to get the last item created by the BER dissector (that API and the new names for the universal tags were supplied by him - the checkin item didn't give him credit). svn path=/trunk/; revision=10491
2004-03-26From Tomas Kukosa: use the "proto_item_get_parent()" andGuy Harris1-4/+4
"proto_item_get_parent_nth()" routines, and use the new name for some of the constants for universal tags. svn path=/trunk/; revision=10490
2004-03-25From Tomas Kukosa: put the number string for a number IE into theGuy Harris1-1/+3
top-level item for the IE tree. svn path=/trunk/; revision=10489
2004-03-25From Tomas Kukosa: don't allow the PER protocol to be disabled.Guy Harris1-1/+3
svn path=/trunk/; revision=10488
2004-03-25Add constants and names for all universal tags.Guy Harris2-25/+66
Add "get_ber_last_created_item()" to get the last created item - you can't access the global variable from a plugin. svn path=/trunk/; revision=10487
2004-03-25From Tomas Kukosa: add APIs to get the parent of a protocol tree itemGuy Harris3-3/+32
and the item N levels up from a protocol tree item. svn path=/trunk/; revision=10486
2004-03-25Fix tags for 07 version.Michael Tüxen1-4/+4
svn path=/trunk/; revision=10485
2004-03-25Add .cvsignore files to the new plugins.Guy Harris3-0/+57
svn path=/trunk/; revision=10484
2004-03-25Squelch compiler warnings, and remove some trailing blanks from lines.Guy Harris3-39/+39
svn path=/trunk/; revision=10483
2004-03-25Add the usual extra files to the new plugins.Guy Harris15-0/+1029
svn path=/trunk/; revision=10482
2004-03-25added hint to use g_snprintf instead of snprintf and sprintfUlf Lamping1-4/+15
svn path=/trunk/; revision=10481
2004-03-25From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session ManagementGuy Harris20-8/+957
support. svn path=/trunk/; revision=10480
2004-03-25From Tomas Kukosa: BER dissector enhancements and proto.c updates toGuy Harris11-460/+2203
support them. From Ronnie Sahlberg: Kerberos updates with new constants from the current draft, decryption and dissection of Kerberos blobs, and changes to work with the changed BER dissector. svn path=/trunk/; revision=10479
2004-03-25DCE RPC version numbers supplied to the registration routines are justGuy Harris1-2/+2
major version numbers. svn path=/trunk/; revision=10478
2004-03-25MSVC warning removedUlf Lamping1-2/+2
svn path=/trunk/; revision=10477
2004-03-25MQ dissector update from metatech.Guy Harris1-25/+30
svn path=/trunk/; revision=10476
2004-03-24Fix the CLEANFILES target so both static and shared libraries are cleaned.Olivier Biot4-4/+8
svn path=/trunk/; revision=10475
2004-03-24commented out unused aim_handle'sUlf Lamping6-12/+12
svn path=/trunk/; revision=10474
2004-03-24Use "tvb_format_text()" to display a string, so that non-printableGuy Harris1-4/+3
characters are handled reasonably. svn path=/trunk/; revision=10473