aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2002-09-03Who was that fscking idiot who put a \n into the mechListMIC format specifier!Richard Sharpe2-5/+5
svn path=/trunk/; revision=6172
2002-09-03From Ulf Lamping, support for ieee float/double types in dce-rpcRonnie Sahlberg1-0/+1
svn path=/trunk/; revision=6171
2002-09-03From Ulf Lamping, support for ieee float and double types in the dcerpcRonnie Sahlberg3-7/+138
dissectors. svn path=/trunk/; revision=6170
2002-09-02From Hannes Gredler:Guy Harris4-68/+99
open up a new subtree for dissecting the lsp-entry TLV; remove the isis_lsp_decode_lsp_id() routine, as the same functionality is better served using print_system_id(); fix a small bug in print_system_id(). svn path=/trunk/; revision=6169
2002-09-02New file describing the status of the GTK+ 2.0 port.Olivier Abad1-0/+31
svn path=/trunk/; revision=6168
2002-09-01Add aclocal-fallback and aclocal-missing to the release tarball.Jörg Mayer1-1/+7
svn path=/trunk/; revision=6167
2002-09-01Update my email.Olivier Abad8-13/+13
svn path=/trunk/; revision=6166
2002-09-01Fix accelarators/mnemonics in dialogs containing radio or check buttons.Olivier Abad6-176/+63
The GTK+ v2 documentation says accelarators should only be used with menus. For text entries or buttons, we must use mnemonics. Replace dlg_check_button_new_with_label_with_mnemonic() and dlg_radio_button_new_with_label_with_mnemonic() with gtk_check_button_new_with_mnemonic() and gtk_radio_button_new_with_mnemonic() For radio buttons, gtk_radio_button_group is deprecated. Use gtk_radio_button_new_with_mnemonic_from_widget() to create a new button in an existing group. svn path=/trunk/; revision=6165
2002-09-01Add the OID that MS created for KRB5 in mistake.Richard Sharpe1-1/+5
svn path=/trunk/; revision=6164
2002-08-31Make "gssapi_init_oid()" take a dissector handle rather than aGuy Harris5-18/+24
registered dissector name; that means you don't have to register a dissector by name to associate it with a GSS-API security mechanism OID. svn path=/trunk/; revision=6163
2002-08-31Make sure we stop processing GSS-API tokens when we actually have finishedRichard Sharpe2-3/+4
and not try to parse unrelated info in the TVB. svn path=/trunk/; revision=6162
2002-08-31Catch exceptions thrown while dissecting the NTLMSSP stuff, so that weGuy Harris1-41/+55
don't abort dissection of the entire packet if we get a ReportedBoundsError while dissecting an authentication blob - the authentication blob might be in the middle of a packet, and if it's too short, that doesn't mean that the stuff *after* it shouldn't be dissected. A length of "-1" when adding items that have variable-length data (FT_NONE, FT_PROTOCOL, FT_BYTES, and FT_STRING; this includes stuff added with "proto_tree_add_text()") means "to the end of the tvbuff"; we don't need to fetch the length of the tvbuff and use that. svn path=/trunk/; revision=6161
2002-08-31Catch exceptions thrown while dissecting the GSS-API stuff, so that weGuy Harris1-121/+141
don't abort dissection of the entire packet if we get a ReportedBoundsError while dissecting an authentication blob - the authentication blob might be in the middle of a packet, and if it's too short, that doesn't mean that the stuff *after* it shouldn't be dissected. svn path=/trunk/; revision=6160
2002-08-31Make Tokens into subtrees etc ...Richard Sharpe1-15/+44
svn path=/trunk/; revision=6159
2002-08-31Remove redundant HAVE_LIBPCAP check (copied from gtk2)Jörg Mayer1-4/+1
svn path=/trunk/; revision=6158
2002-08-31Small whitespace changeJörg Mayer1-11/+11
svn path=/trunk/; revision=6157
2002-08-31Remove unused include snprintf.hJörg Mayer1-5/+1
svn path=/trunk/; revision=6156
2002-08-31Remove trailing whitespaces.Jörg Mayer3-9/+9
svn path=/trunk/; revision=6155
2002-08-31Remove trailing whitespaces.Jörg Mayer4-66/+66
svn path=/trunk/; revision=6154
2002-08-31GTK+ v2 port.Olivier Abad74-12/+24471
All the deprecated widgets have not been replaced yet : GtkList and GtkCList ==> GtkTreeView conversion : - color_dlg.c - column_prefs.c - decode_as_dlg.c : done - dfilter_expr_dialog - filter_prefs.c - main.c - plugins_dlg.c : done GtkCTree ==> GtkTreeView conversion : done GtkText ==> GtkTextView conversion : done Remaining problems : - gtk_font_selection_dialog_set_filter doesn't exist anymore (but hasn't been removed from the documentation). I don't know how to filter the font selection dialog to get only fixed width fonts ; - we have to remove GUI prefs which are not usefule anymore : tree line style and tree expander style. svn path=/trunk/; revision=6153
2002-08-31Further fixes. Properly account for the length of headers. Still some headersRichard Sharpe2-11/+23
that we do not account for properly, like Octet Strings. svn path=/trunk/; revision=6152
2002-08-31Properly handle raw ntlmssp ...Richard Sharpe2-22/+50
svn path=/trunk/; revision=6151
2002-08-31Cast the Mbits/s calculation as a float, so that we display the valueGerald Combs1-2/+3
correctly for large captures. svn path=/trunk/; revision=6150
2002-08-31Handle the lack of a security blob in negprot response when raw NTLMSSP isRichard Sharpe2-4/+8
being used properly. svn path=/trunk/; revision=6149
2002-08-30Add support for raw NTLMSSP blobs when talking to XP etc ...Richard Sharpe2-3/+18
More to do yet though ... svn path=/trunk/; revision=6148
2002-08-30Squelch a whole bunch of compiler warnings. The remaining ones will have to ↵Richard Sharpe1-31/+20
wait until someone implements the missing bits of code. svn path=/trunk/; revision=6147
2002-08-30From Ulf Lamping:Gerald Combs1-3/+8
a: display of the currently installed ethereal version in "add/remove software panel", e.g. "Ethereal 0.9.6" instead of "Ethereal" only. b: added a link to the ethereal homepage "http://www.ethereal.com/" in Start->Programs->Ethereal c: added a link to the ethereal program directory in Start->Programs->Ethereal svn path=/trunk/; revision=6146
2002-08-30Print RR number as unsigned.Jörg Mayer1-3/+4
svn path=/trunk/; revision=6145
2002-08-30Fix the RCS ID and a compiler warning.Guy Harris1-2/+2
svn path=/trunk/; revision=6144
2002-08-30From Flavio Poletti: fix a bug in "decode_qos_umts()".Guy Harris1-7/+13
svn path=/trunk/; revision=6143
2002-08-30Include "packet-gssapi.h" to declare routines we call.Guy Harris2-2/+4
svn path=/trunk/; revision=6142
2002-08-30From Anand Narwani: updates to fix:Guy Harris2-12/+60
- Bug in the dissection of the Request/Transmit policy in packet-tlv.c - Incorrect filter string for docsis.ehdr.ver - Dissection of PHS Upstream/Downstream Extended Header sub-elements - Dissection of Unsolicited Grant Sync sub-element svn path=/trunk/; revision=6141
2002-08-30Some more SPNEGO fixes. Getting much closer ...Richard Sharpe2-24/+44
svn path=/trunk/; revision=6140
2002-08-30This has been moved to packet-spnego.cTim Potter1-91/+0
svn path=/trunk/; revision=6139
2002-08-30snego -> spnegoTim Potter1-5/+5
svn path=/trunk/; revision=6138
2002-08-30OK, this is a lot better.Richard Sharpe1-36/+51
Still have to work on the Octet string versus general string, but much of it is there now. svn path=/trunk/; revision=6137
2002-08-30Commit the latest changes to get rid of seg-faultsRichard Sharpe1-15/+54
svn path=/trunk/; revision=6136
2002-08-30More fixes from Albert ChinRichard Sharpe2-10/+10
svn path=/trunk/; revision=6135
2002-08-30Add some fixes from Albert ChinRichard Sharpe2-7/+8
svn path=/trunk/; revision=6134
2002-08-30More SPNEGO, now can get down to NTLMSSP if that is what the negTokenTargRichard Sharpe2-8/+110
contains. svn path=/trunk/; revision=6133
2002-08-29Some more of SPNEGO ... more to come ...Richard Sharpe1-2/+86
svn path=/trunk/; revision=6132
2002-08-29More support for SPNEGO ... Gotta handle the supportedMech and cache theRichard Sharpe1-10/+51
handle for the dissector routine yet ... Real work to do though ... svn path=/trunk/; revision=6131
2002-08-29From Mark Burton: fix the byte order in the CRC calculation.Guy Harris1-2/+12
svn path=/trunk/; revision=6130
2002-08-29From Ulf Lamping: change some #define names to avoid name collisions onGuy Harris7-508/+510
Windows that cause compiler warnings. svn path=/trunk/; revision=6129
2002-08-29From Hannes Gredler: make the IS-IS dissector more verbose in the INFOGuy Harris8-42/+76
field - specifically for IIHs the System-ID of the Hello; LSPs the LSP-ID, Sequence #, Lifetime; CSNPs the LAN-ID, Start LSP-ID, End LSP-ID. and change the display of some IDs. Clean up white space. svn path=/trunk/; revision=6128
2002-08-29OK, we now dissect the innerContextToken properly, and SPNEGO understands aRichard Sharpe2-6/+56
negTokenTarg, there is just more work to do on this. svn path=/trunk/; revision=6127
2002-08-29OK, add more conversation stuff for gssapi ... see iff it works now.Richard Sharpe1-17/+44
svn path=/trunk/; revision=6126
2002-08-29Start the code to keep state in GSSAPI.Richard Sharpe1-8/+27
Since we only need the dissector handle, I cheated :-) This should not cause problems (famous last words) svn path=/trunk/; revision=6125
2002-08-29Interbase dissector added for Uwe GirlichUwe Girlich1-0/+1
svn path=/trunk/; revision=6124
2002-08-29packet-ib.c addedUwe Girlich2-2/+4
svn path=/trunk/; revision=6123