aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-01-17add some parentheses as suggested by the OS X buildbotUlf Lamping1-12/+12
svn path=/trunk/; revision=24122
2008-01-17epan (libwireshark) uses getservbyport() which, at least on Solaris, is in ↵Jeff Morriss1-7/+7
libsocket so add libsocket (and libnsl) to libwireshark_la_LIBADD svn path=/trunk/; revision=24121
2008-01-17better conformance to the released DCP protocol spec:Ulf Lamping1-123/+170
- redesign/refactoring the code to support BlockQualifier - fix handling of BlockInfo - rename some display strings for better spec conformance - remove LLDP suboption svn path=/trunk/; revision=24120
2008-01-17Add support for DLT_SCCP (SCCP without MTP2, MTP3, or any pseudo-header).Jeff Morriss3-37/+40
svn path=/trunk/; revision=24119
2008-01-17Hmmm. The previous ansi_tcap.cnf did not make valid code.Stig Bjørlykke2-2/+2
I hope this fix is correct... svn path=/trunk/; revision=24118
2008-01-16Changed some variable types to make it compile.Stig Bjørlykke1-3/+3
svn path=/trunk/; revision=24117
2008-01-16- Removed some unused variables in asn1 dissectorsStig Bjørlykke21-143/+123
- Fixed last parameter to cry_cipher_open() in pkcs12 svn path=/trunk/; revision=24116
2008-01-16Changed to checksum_good and checksum_bad to align with other dissectors.Stig Bjørlykke2-4/+4
svn path=/trunk/; revision=24115
2008-01-16Print the string to STDOUT regardless of the value of tree.Jaap Keuter1-3/+2
svn path=/trunk/; revision=24114
2008-01-16- Display some sctpprim parametersMartin Mathieson1-45/+295
- Parse sctpprim v3 properly now - Add wtp protocol name svn path=/trunk/; revision=24113
2008-01-16From Jim Young:Jaap Keuter8-3/+215
This patch provides a new RTP Player preferences dialog. It allows one to select the maximum number of visable channels in the RTP Player window. The default is four (4) channels which is the maximum number of usable channels that the RTP Player can display and still have access to the bottom row buttons on a 1024*768 resolution display. Specifying a value less than 1 or greater than 10 will be result in the RTP Player displaying the default 4 channels. svn path=/trunk/; revision=24112
2008-01-16dumpcap link: remove duplicate epan/unicode-utils.obj Bill Meier1-1/+1
svn path=/trunk/; revision=24111
2008-01-16Add ':' to some labels to prevent assembler warning messagesBill Meier1-5/+5
svn path=/trunk/; revision=24110
2008-01-15Call post dissectors with call_dissector_only() to avoid an extra Data entryStig Bjørlykke1-1/+1
if post dissectors are disabled, as pointed out by LEGO. svn path=/trunk/; revision=24109
2008-01-15Moved a G_GINT64_CONSTANT to a more correct position.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24108
2008-01-15Fixed a small issue reporting corresponding package num for retransmittedStig Bjørlykke1-1/+9
reports and notifications. svn path=/trunk/; revision=24107
2008-01-15Use G_GINT64_CONSTANT(hope it makes the OS X build bot happy).Anders Broman3-32/+32
Unused variables fix to camel. svn path=/trunk/; revision=24106
2008-01-15Use G_GINT64_CONSTANT(hope it makes the build bot happy).Anders Broman1-3/+3
svn path=/trunk/; revision=24105
2008-01-15Use G_GINT64_MODIFIER hope it makes the build bot happy.Anders Broman1-1/+1
Probbably needed in x2ap as well (needs asn2wrs support or .cnf magic). svn path=/trunk/; revision=24104
2008-01-15Update the VC2005EE URL.Gerald Combs1-109/+109
svn path=/trunk/; revision=24103
2008-01-15Discard existing list of disabled protocols in read_disabled_protos_list()Stig Bjørlykke1-13/+25
even if disabled_protos file does not exist. This fixes a problem with disabled protocols when changing profile. svn path=/trunk/; revision=24102
2008-01-15Use New GTK packages:Anders Broman2-10/+10
Overview of Changes from GLib 2.14.4 to GLib 2.14.5 =================================================== * Bugs fixed: 482313 gregex: no way to tell why compilation failed 315437 extern inline -> static inline 480122 g_module_open fails to open modules with ".la" extension 495589 gspawn.c failing to set FD_CLOEXEC 500638 gkeyfile speedup ... 503029 g_time_val_from_iso8601 parse non-ISO8601 dates 503420 gkeyfile leaks a hash table Overview of Changes from GTK+ 2.12.3 to 2.12.4 ============================================== * Bugs fixed: 494667 gdkpixloader jpeg loader problems with some files 496546 Tooltips may crashe because a window is destroyed 503824 gtk_paned_find_neighbours aborts with assertion failure 388321 gtk_notebook_remove_tab_label 503190 Doesn't build with directfb >= 1.0 491847 gtk-builder-convert --root option doesn't work for GtkWin... 492977 Setup autorelease pool automatically in each mainloop ite... 499951 GtkAssistant remove_page may leave current_page as a dang... 502250 Leak in gtkfilechooserdefault.c:shortcuts_reload_icons() 503569 Leak in GtkTreeViewColumn 504753 Destroyed subviews are not removed from the view hierarchy 504804 Typo in TEST_EXPAND_ROW signal 504984 Problems with hiding/showing transient windows 505708 compatibility macros for signals has wrong type. 506107 mem leak in print dialogue 502850 gtk-builder-convert program not found 504749 gtk-builder-convert and GtkMenu GTK+ 2.12.5 This release fixes an incomplete icon cache that was accidentally shipped in 2.12.4. svn path=/trunk/; revision=24101
2008-01-15Include dirent.h if we have it (to fix glib-1 compile: it needed DIR).Jeff Morriss1-11/+15
svn path=/trunk/; revision=24100
2008-01-15Oops, glib's iconv stuff is in glib >= 2, not just glib > 2Jeff Morriss1-3/+3
svn path=/trunk/; revision=24099
2008-01-15The glib iconv routines are new to glib-2 so #ifdef around them to get ↵Jeff Morriss1-9/+16
glib-1 builds going again. I started to merge in using the regular iconv routines (if we don't have glib-2 but we HAVE_CONV) but the code rapidly got ugly with all the #ifdef's; it could be done but it's probably not worth the effort/ugliness. svn path=/trunk/; revision=24098
2008-01-15make per_constrained_integer handle 64bits needed for X2AP.Anders Broman7-14/+265
svn path=/trunk/; revision=24097
2008-01-15Bump dateStig Bjørlykke1-1/+1
svn path=/trunk/; revision=24096
2008-01-15From Neil Piercy: Anders Broman3-365/+386
Dissect RRC NAS Message PDUs. svn path=/trunk/; revision=24095
2008-01-15Changed to use GTK stock icon for preferences in the toolbar.Stig Bjørlykke2-6/+3
svn path=/trunk/; revision=24094
2008-01-14Fixed a typo in the docbook.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24093
2008-01-14Save the changes also when selecting a profile from the list.Stig Bjørlykke1-22/+20
svn path=/trunk/; revision=24092
2008-01-14Several profile enhancements:Stig Bjørlykke1-0/+31
- Give initial focus to the profiles list - Enter in the profiles list selects the profile - Give focus to the profile name when creating a new profile svn path=/trunk/; revision=24091
2008-01-14Added cast of argument to isspace.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24090
2008-01-14This patch adds support for configuration profiles, which can be used toStig Bjørlykke37-159/+1587
configure and use more than one set of preferences and configuration files. This can be found in the "Configuration Profiles..." menu item from the Edit menu, or by pressing Shift-Ctrl-A. It's also possible to start wireshark and tshark with a named profile by using the "-C ProfileName" option. A new status pane in the main window will show the current profile. The configuration files currently stored in the Profiles are: - Preferences - Capture Filters - Display Filters - Coloring Rules - Disabled Protocols - User Accessible Tables The recent data are by design not added to the profile. Planned future enhancements: - make a more convenient function to switch between profiles - add a "clone profile" button to copy an existing profile - make the profiles list active and accept return as OK - save users "Decode as" in the profile - make new, clone and deletion of profiles more secure - make some of the recent values available in the profile This patch also fixes: - setting default status pane sizes - a bug setting status pane for packets when not having main lower pane. svn path=/trunk/; revision=24089
2008-01-14Added copy of ethercat.dll, as pointed out by Peter Johansson.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=24088
2008-01-14use FN_VARIANT parameter in INTEGER type for planned 64bit variantsTomas Kukosa1-3/+3
svn path=/trunk/; revision=24087
2008-01-14Fixed a guint64 compile issue with a Sun C 5.8 compiler.Stig Bjørlykke1-5/+6
Fixed a tree placement. svn path=/trunk/; revision=24086
2008-01-14Fixed a few "statement not reached" warnings and a "assignment type ↵Stig Bjørlykke4-9/+1
mismatch" warning. svn path=/trunk/; revision=24085
2008-01-14add ssl_debug_flush() at the end of initializationTomas Kukosa1-1/+2
svn path=/trunk/; revision=24084
2008-01-14Fix seek reading by adding the size of the block length at the end of theStephen Fisher1-1/+1
block to the data offset. svn path=/trunk/; revision=24083
2008-01-13some minor updatesUlf Lamping1-4/+3
svn path=/trunk/; revision=24082
2008-01-13Add svn:eol-style native and svn:keywords IdStephen Fisher2-1017/+1017
svn path=/trunk/; revision=24081
2008-01-13Make pcapng.c compile on Unix (with gcc)Stephen Fisher1-6/+8
svn path=/trunk/; revision=24080
2008-01-13add very experimental support for pcapng "PCAP Next Generation Dump File ↵Ulf Lamping7-1/+1040
Format" - this is incomplete and buggy, be careful! svn path=/trunk/; revision=24079
2008-01-13Update package name from IANA's list.Anders Broman2-3/+131
svn path=/trunk/; revision=24078
2008-01-13transactionId wasn't processed for:Anders Broman2-46/+122
SegmentReply/transactionId TransactionReply/transactionId TransactionPending/transactionId Fixes bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2165 svn path=/trunk/; revision=24077
2008-01-13Basic support for the LDAP start_tls extended operation and fix to match up ↵Graeme Lunt3-58/+214
extended operation arguments and results. svn path=/trunk/; revision=24076
2008-01-13Support for keylists for protocols that use start_tls - where SSL is ↵Graeme Lunt2-34/+48
negotiated at some point during a conversation and cannot be assumed on the basis of the port number alone. Also dissection of Distinguished Names. svn path=/trunk/; revision=24075
2008-01-13From Michael Earnhart:Jaap Keuter1-3/+88
Patch to add cdp Power_request and Power_available fields This added the support for the 0x0019 and 0x001a power_request and power_available fields. Submitted patch slightly modified to present summary line and make more robust. svn path=/trunk/; revision=24074
2008-01-13Fix for bug #2017: VoIP trace crashes Wireshark when specific RTP PlayerStephen Fisher1-1/+14
buttons are clicked svn path=/trunk/; revision=24073