aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-05-21Don't print empty lines follwing a }jmayer1-0/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10948 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Add a missing {jmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10947 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21WIN32 only: add an "Authors" notebook tab, to show the content ofulfl1-5/+8
the AUTHORS-SHORT file git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10946 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21install (and uninstall) AUTHORS-SHORT and COPYING filesulfl1-1/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10945 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21convert AUTHORS file to a shorter version (without the tasks done)ulfl2-4/+32
for the about dialog git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10944 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21From Thomas Anders enhancements to PacketCablesahlberg2-43/+87
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10943 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21code cleanup (e.g. removed unused function parameters),ulfl4-22/+41
added new about page, showing the authors file (but still commented out) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10942 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Now that the "About" dialog box's code is in "gtk/about_dlg.c", move theguy5-5/+37
"create an About dialog" function's declaration to "gtk/about_dlg.h". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10941 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21GCC warns about zero-length format strings, presumably either becauseguy1-17/+17
not all *printf routines don't handle them or because there's no advantage to using one rather than just copying a null string to the target (the length-checking done by "snprintf"-style routines is useful for a null string only if the target is zero-length, which it isn't in this case). Clean up indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10940 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Make the XPM data an array of "const char *", to get rid of a compilerguy1-1/+1
warning. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10939 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Get rid of a no-longer-used variable.guy1-3/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10938 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Include <string.h> to declare "strdup()".guy1-2/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10937 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21split helper text page function into a generic and a help specific part,ulfl1-9/+25
so other files can use this functionality too git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10936 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21gtk_window_present() new dialog windows, to be sure they get on topulfl1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10935 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-21Tag unused parameters with _U_ to squelch GCC compiler warnings (they'reguy3-9/+10
GTK+ callbacks so we don't get to change the calling sequence). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10934 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20complete new layout of the summary dialogulfl1-159/+184
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10933 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20simple_list_new(): hide title row, if titles == NULLulfl1-4/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10932 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20"datafile_dir" in "init_plugins()" is used regardless of whether we'reguy1-13/+8
on Windows or UN*X - don't #ifdef it. Clean up the #ifdefs in "get_plugins_global_dir()". Clean up white space. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10931 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20beautify the "About Ethereal" page, put plugin list into the dialogulfl3-160/+127
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10930 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20as it's difficult to create a list widget for both supported GTK versions,ulfl2-2/+95
I've started to implement a simple list to hide the complexity git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10929 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20separate dir functions from the plugin init,ulfl3-33/+98
put this and some other dirs in the about dialog git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10928 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20code cleanupulfl1-4/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10927 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20call gtk_window_present() only on GTK2 and aboveulfl1-1/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10926 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20moved the about dialog from main.c to it's own new about_dlg.c,ulfl5-136/+261
added a notebook tab with some directory infos (still incomplete and ugly) cleaned up #includes in main.c (hoping this didn't break the build on unix) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10925 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20added a depend to ethereal-tap-register.c,ulfl1-2/+2
so adding a gtk-tap will regenerate this file git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10924 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20avoid using ushort (not available on all platforms), use guint16 insteadulfl1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10923 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-20update menu check items, if name resolution prefs changedulfl3-11/+22
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10922 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-19workaround for GTK2 bug: bring main window back to front,ulfl1-1/+11
when a dialog is closed git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10921 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-19Fixes to LMP for draft-09 support.ashokn2-35/+26
Minor fix to RSVP for G-UNI object number. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10920 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-19Remove hf argument to common routines for dissecting domain sids. Mosttpot6-84/+54
of the callers passed -1 for this parameter anyway. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10919 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-18Thomas Anders: Pathnames might contain Spaces, krb5-config might not be in PATHjmayer1-5/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10918 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-18update to packetcable dissect all of apreq/aprep packetssahlberg1-7/+228
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10917 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-18New protocol : PacketCable : PKTCsahlberg5-3/+219
The AP-REQ and AP_REP packets are partially dissected up to and including the kerberos blob. work in progress git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10916 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-18this is a hack, to workaround a bug in GTK2.x!ulfl1-3/+13
when changing the font size, even refilling of the corresponding gtk_text_buffer doesn't seem to trigger an update. The only workaround is to freshly select the frame, which will remove any existing notebook tabs and "restart" the whole byte view again. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10915 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-17GTK2 only: catch window state event, and call display_queued_messages()ulfl2-17/+35
if window not iconified any longer. Queue up simple_dialog messages, if window *is* iconified git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10914 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-17In rpc programs statistics, change RTT (RoundTripTime) to SRTsahlberg2-8/+8
(ServiceResponseTime) since that is a more appropriate name for these stats. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10913 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-17rename the NOT_DECODED_YET macros to avoid a name clashsahlberg7-56/+56
for those sources that include both packet-ber.h and packet-per.h git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10912 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-16From Yaniv Kaul: add support for 3 MS-Exchange, non-RFC compliantguy1-2/+6
commands, per http://support.microsoft.com/default.aspx?scid=kb;[LN];812455 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10911 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-16don't show simple_dialogs, if main window iconified (minimized),ulfl1-1/+25
this would lead to an unresponsive program. Simply discard the messages, as we don't have a way to queue and show this message if the main window is becoming "visible" again. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10910 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-16From Yaniv Kaul: note that authentication types 1 and 2 are from RFCguy1-3/+3
2338. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10909 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15From Gisle Vanem: export dfilter_dump from libethereal for the benefitguy1-0/+1
of dftest. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10908 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15From Thomas Anders: fix --with-net-snmp to let it handle either theguy1-3/+6
pathname of the Net-SNMP directory or the pathname of the Net-SNMP configure script as an argument to that option. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10907 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15From James H. Cloos Jr: update the list of audio and video codecs.guy4-8/+22
Get rid of no-longer-used AST_FORMAT_MP3. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10906 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15From Martin Mathieson: mark the "this is a suspected resend" Boolean andguy1-8/+14
"this is suspected to be a resend of frame N" entries as generated, and make the latter an FT_FRAMENUM field so you can go to that frame conveniently. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10905 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15From Carlos Pignataro: support for MPLS over GRE.guy3-4/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10904 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15Move common routines from packet-dcerpc-samr.c to packet-dcerpc-nt.ctpot2-398/+445
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10903 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15Remove call to PROTO_ITEM_SET_LINK().tpot1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10902 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15remove FI_LINK again,ulfl2-16/+2
as this info can be derived from the presence of the FT_FRAMENUM field git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10901 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-15remove FI_LINK again,ulfl3-10/+5
as this info can be derived from the presence of the FT_FRAMENUM field git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10900 f5534014-38df-0310-8fa8-9805f1628bb7
2004-05-14More updates to packetcable kerberossahlberg2-11/+46
in particular, packetcable use a slightly diufferent KDC-REQ-BODY where the field till[5] is optional. Make it optional in the dissector as well since ethereal will still be able to dissecto normal kerberos pdus where it is not optional git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10899 f5534014-38df-0310-8fa8-9805f1628bb7