aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Tap api. tap is a simple api that can be used for arbitrary extensions.Ronnie Sahlberg2002-09-0412-32/+909
| | | | | | | | | | | | One example extension is rpcstat. Try -Z rpc,rtt,100003,3 as argument to tethereal when reading a capture containing NFSv3 packets. tap-rpcstat.[ch] is intended to demonstrate the api and can be used to base other extensions on. svn path=/trunk/; revision=6175
* Fix up warnings by implementing the stuff that was left out.Richard Sharpe2002-09-041-6/+36
| | | | svn path=/trunk/; revision=6174
* Fix the handling of the NTLMSSP blobs in the case when the server asksRichard Sharpe2002-09-042-5/+17
| | | | | | for RAW NTLMSSP, but the client actually sends SPNEGO encapsulated NTLMSSP. svn path=/trunk/; revision=6173
* Who was that fscking idiot who put a \n into the mechListMIC format specifier!Richard Sharpe2002-09-032-5/+5
| | | | svn path=/trunk/; revision=6172
* From Ulf Lamping, support for ieee float/double types in dce-rpcRonnie Sahlberg2002-09-031-0/+1
| | | | svn path=/trunk/; revision=6171
* From Ulf Lamping, support for ieee float and double types in the dcerpcRonnie Sahlberg2002-09-033-7/+138
| | | | | | dissectors. svn path=/trunk/; revision=6170
* From Hannes Gredler:Guy Harris2002-09-024-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
* New file describing the status of the GTK+ 2.0 port.Olivier Abad2002-09-021-0/+31
| | | | svn path=/trunk/; revision=6168
* Add aclocal-fallback and aclocal-missing to the release tarball.Jörg Mayer2002-09-011-1/+7
| | | | svn path=/trunk/; revision=6167
* Update my email.Olivier Abad2002-09-018-13/+13
| | | | svn path=/trunk/; revision=6166
* Fix accelarators/mnemonics in dialogs containing radio or check buttons.Olivier Abad2002-09-016-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
* Add the OID that MS created for KRB5 in mistake.Richard Sharpe2002-09-011-1/+5
| | | | svn path=/trunk/; revision=6164
* Make "gssapi_init_oid()" take a dissector handle rather than aGuy Harris2002-08-315-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
* Make sure we stop processing GSS-API tokens when we actually have finishedRichard Sharpe2002-08-312-3/+4
| | | | | | and not try to parse unrelated info in the TVB. svn path=/trunk/; revision=6162
* Catch exceptions thrown while dissecting the NTLMSSP stuff, so that weGuy Harris2002-08-311-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
* Catch exceptions thrown while dissecting the GSS-API stuff, so that weGuy Harris2002-08-311-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
* Make Tokens into subtrees etc ...Richard Sharpe2002-08-311-15/+44
| | | | svn path=/trunk/; revision=6159
* Remove redundant HAVE_LIBPCAP check (copied from gtk2)Jörg Mayer2002-08-311-4/+1
| | | | svn path=/trunk/; revision=6158
* Small whitespace changeJörg Mayer2002-08-311-11/+11
| | | | svn path=/trunk/; revision=6157
* Remove unused include snprintf.hJörg Mayer2002-08-311-5/+1
| | | | svn path=/trunk/; revision=6156
* Remove trailing whitespaces.Jörg Mayer2002-08-313-9/+9
| | | | svn path=/trunk/; revision=6155
* Remove trailing whitespaces.Jörg Mayer2002-08-314-66/+66
| | | | svn path=/trunk/; revision=6154
* GTK+ v2 port.Olivier Abad2002-08-3174-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
* Further fixes. Properly account for the length of headers. Still some headersRichard Sharpe2002-08-312-11/+23
| | | | | | that we do not account for properly, like Octet Strings. svn path=/trunk/; revision=6152
* Properly handle raw ntlmssp ...Richard Sharpe2002-08-312-22/+50
| | | | svn path=/trunk/; revision=6151
* Cast the Mbits/s calculation as a float, so that we display the valueGerald Combs2002-08-311-2/+3
| | | | | | correctly for large captures. svn path=/trunk/; revision=6150
* Handle the lack of a security blob in negprot response when raw NTLMSSP isRichard Sharpe2002-08-312-4/+8
| | | | | | being used properly. svn path=/trunk/; revision=6149
* Add support for raw NTLMSSP blobs when talking to XP etc ...Richard Sharpe2002-08-302-3/+18
| | | | | | More to do yet though ... svn path=/trunk/; revision=6148
* Squelch a whole bunch of compiler warnings. The remaining ones will have to ↵Richard Sharpe2002-08-301-31/+20
| | | | | | wait until someone implements the missing bits of code. svn path=/trunk/; revision=6147
* From Ulf Lamping:Gerald Combs2002-08-301-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
* Print RR number as unsigned.Jörg Mayer2002-08-301-3/+4
| | | | svn path=/trunk/; revision=6145
* Fix the RCS ID and a compiler warning.Guy Harris2002-08-301-2/+2
| | | | svn path=/trunk/; revision=6144
* From Flavio Poletti: fix a bug in "decode_qos_umts()".Guy Harris2002-08-301-7/+13
| | | | svn path=/trunk/; revision=6143
* Include "packet-gssapi.h" to declare routines we call.Guy Harris2002-08-302-2/+4
| | | | svn path=/trunk/; revision=6142
* From Anand Narwani: updates to fix:Guy Harris2002-08-302-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
* Some more SPNEGO fixes. Getting much closer ...Richard Sharpe2002-08-302-24/+44
| | | | svn path=/trunk/; revision=6140
* This has been moved to packet-spnego.cTim Potter2002-08-301-91/+0
| | | | svn path=/trunk/; revision=6139
* snego -> spnegoTim Potter2002-08-301-5/+5
| | | | svn path=/trunk/; revision=6138
* OK, this is a lot better.Richard Sharpe2002-08-301-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
* Commit the latest changes to get rid of seg-faultsRichard Sharpe2002-08-301-15/+54
| | | | svn path=/trunk/; revision=6136
* More fixes from Albert ChinRichard Sharpe2002-08-302-10/+10
| | | | svn path=/trunk/; revision=6135
* Add some fixes from Albert ChinRichard Sharpe2002-08-302-7/+8
| | | | svn path=/trunk/; revision=6134
* More SPNEGO, now can get down to NTLMSSP if that is what the negTokenTargRichard Sharpe2002-08-302-8/+110
| | | | | | contains. svn path=/trunk/; revision=6133
* Some more of SPNEGO ... more to come ...Richard Sharpe2002-08-291-2/+86
| | | | svn path=/trunk/; revision=6132
* More support for SPNEGO ... Gotta handle the supportedMech and cache theRichard Sharpe2002-08-291-10/+51
| | | | | | | | handle for the dissector routine yet ... Real work to do though ... svn path=/trunk/; revision=6131
* From Mark Burton: fix the byte order in the CRC calculation.Guy Harris2002-08-291-2/+12
| | | | svn path=/trunk/; revision=6130
* From Ulf Lamping: change some #define names to avoid name collisions onGuy Harris2002-08-297-508/+510
| | | | | | Windows that cause compiler warnings. svn path=/trunk/; revision=6129
* From Hannes Gredler: make the IS-IS dissector more verbose in the INFOGuy Harris2002-08-298-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
* OK, we now dissect the innerContextToken properly, and SPNEGO understands aRichard Sharpe2002-08-292-6/+56
| | | | | | negTokenTarg, there is just more work to do on this. svn path=/trunk/; revision=6127
* OK, add more conversation stuff for gssapi ... see iff it works now.Richard Sharpe2002-08-291-17/+44
| | | | svn path=/trunk/; revision=6126