aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-09-10Move the stuff to handle ASCII <-> EBCDIC conversions toGuy Harris8-120/+191
"epan/charsets.c"; other character set translation code should perhaps go there as well. svn path=/trunk/; revision=11958
2004-09-10Add the new "proto_registrar_dump_values()" routine, as it's used byGuy Harris1-0/+1
Ethereal and Tethereal to handle "-G values". svn path=/trunk/; revision=11957
2004-09-10Hoist the code for handling "-G" into a common module.Guy Harris5-40/+111
svn path=/trunk/; revision=11956
2004-09-10minor changeUlf Lamping1-1/+1
svn path=/trunk/; revision=11955
2004-09-10Add a "-G fields2" option which is like "-G fields", but extends the fieldGilbert Ramirez4-11/+182
records by tw fields: base (for integers), and blurb Add a "-G values" option which shows value strings and true_false strings for the fields that have them. svn path=/trunk/; revision=11954
2004-09-09Show ETHERTYPE_IPv6 as "IPv6" in the type field.Guy Harris1-0/+1
svn path=/trunk/; revision=11953
2004-09-09Added Christophe Devine as a contributor.Anders Broman1-0/+3
svn path=/trunk/; revision=11952
2004-09-09Add SHA1 routines for future use at least by SigCompAnders Broman1-0/+1
svn path=/trunk/; revision=11951
2004-09-09Add SHA1 routines for future use at least by SigCompAnders Broman2-0/+433
svn path=/trunk/; revision=11950
2004-09-09Add SHA1 routines for future use, at least by SigCompAnders Broman1-0/+1
svn path=/trunk/; revision=11949
2004-09-09From Remi Denis-Courmont: heuristic dissector for Teredo.Guy Harris1-1/+86
svn path=/trunk/; revision=11948
2004-09-09From Luca Deri: NetFlow v9 enhancements.Guy Harris2-8/+184
svn path=/trunk/; revision=11947
2004-09-08Squelch a compiler warning. (We really might want aGuy Harris1-1/+2
"tvb_ensure_reported_length_remaining()" call here.) svn path=/trunk/; revision=11946
2004-09-08To conert a little-endian value to a big-endian value, useGuy Harris1-1/+1
GUINT32_SWAP_LE_BE(), not GUINT32_TO_BE() - the latter converts a host-byte-order value to big-endian, but the host might be big-endian. svn path=/trunk/; revision=11945
2004-09-08Try to get the window geometry only, if a GdkWindow really exists for that ↵Ulf Lamping1-7/+11
GtkWidget (e.g. the widget isn't hidden) svn path=/trunk/; revision=11944
2004-09-08Fix a minor bug only with GTK2.4: if have a problem while saving a file ↵Ulf Lamping1-0/+8
(e.g. filename already exists) will lead to an unresponding file dialog. The fix will close the dialog, which isn't the best solution, but I don't see a better one. svn path=/trunk/; revision=11943
2004-09-08Added some valuestring parameters for PoCAnders Broman1-0/+2
svn path=/trunk/; revision=11942
2004-09-08Updated the comment at the beginning of the file.Michael Tüxen1-1/+2
svn path=/trunk/; revision=11941
2004-09-08Added support for version 12. So it now supports version 02, 08 andMichael Tüxen1-29/+169
12 of the internet draft. svn path=/trunk/; revision=11940
2004-09-08From Peter Johansson, make proto_tree_add_item() handle IPv4 addressesRonnie Sahlberg1-1/+1
stored in little endian format. svn path=/trunk/; revision=11939
2004-09-08From Devin Heitmuller: decode verifiers after stub decryption - forGuy Harris1-6/+19
NTLMSSP, the state of the RC4 stream is dependent on the stub being decrypted before the verifier. Correctly set the length and reported length of the tvb for the stub (the reported length of that tvb should be set based on the *reported* length of the parent tvbuff, not the captured length). svn path=/trunk/; revision=11938
2004-09-08sort_iter_compare_func() only needed with GTK2Ulf Lamping1-0/+2
svn path=/trunk/; revision=11937
2004-09-07Note that developers should avoid GTK+ 2.x/GLib 2.x-only stuff (and, inGuy Harris1-0/+14
particularly, should disregard all the renaming they did of some routines, as the old names work Just Fine in 2.x but the new names don't work in 1.2[.x]). svn path=/trunk/; revision=11936
2004-09-07"g_string_printf()" is GLib 2.x-only, but "g_string_sprintf()" works inGuy Harris1-7/+7
2.x and 1.2[.x]. Use "g_string_sprintf()", its deprecation nonwithstanding. svn path=/trunk/; revision=11935
2004-09-07Put the byte-order mark back.Guy Harris1-1/+1
svn path=/trunk/; revision=11934
2004-09-07Squelch a compiler warning.Guy Harris1-0/+1
svn path=/trunk/; revision=11933
2004-09-07Canonicalize the line endings, and set svn:eol-style to native to keepGuy Harris1-452/+451
them canonicalized. Set svn:keywords to Id to expand RCS IDs. svn path=/trunk/; revision=11932
2004-09-07Set svn:eol-style to native to keep line endings canonicalized.Guy Harris5-5/+5
Set svn:keywords to Id to expand RCS IDs. svn path=/trunk/; revision=11931
2004-09-07Canonicalize the line endings, and set svn:eol-style to native to keepGuy Harris1-156/+156
them canonicalized. Set svn:keywords to Id to expand RCS IDs. svn path=/trunk/; revision=11930
2004-09-07added a Clear button to the Decode As dialog, also added some tooltips Ulf Lamping1-35/+67
svn path=/trunk/; revision=11929
2004-09-07replace the Cancel with a Close button, as pressing it will not rewind any ↵Ulf Lamping1-13/+12
previously applied operations svn path=/trunk/; revision=11928
2004-09-07don't put the "(none)" interface into the list, Ethereal will crash if it's ↵Ulf Lamping1-1/+2
applied to Decode As svn path=/trunk/; revision=11927
2004-09-07Canonicalize the line endings, set the svn:eol-style property toGuy Harris2-17/+17
"native" so they stay canonicalized, and set svn:keywords to Id so that RCS IDs get expanded. svn path=/trunk/; revision=11926
2004-09-07two bugfixes: sort items in alphabetical order and don't do a ↵Ulf Lamping1-3/+48
OBJECT_GET_DATA on a NULL pointer svn path=/trunk/; revision=11925
2004-09-07First working implementation of "Decode As" for DCE-RPC interface bindings. ↵Ulf Lamping10-275/+774
Ethereal needs to capture the DCE-RPC bind sequence, to get a relationsship between the interface UUID and the current conversation. If this binding wasn't captured, one can use "Decode As" and choose the interface from a list corresponding to a specific conversation. Currently "only" implemented for connectionoriented (TCP) DCE-RPC, but connectionless is a work in progress. svn path=/trunk/; revision=11924
2004-09-07Do not compile SCTP analysis stuff right now.Michael Tüxen1-6/+0
svn path=/trunk/; revision=11922
2004-09-07using #ifdef HAVE_SYS_TYPES_H around some of the includes making problems, ↵Ulf Lamping2-8/+23
but still uncompilable on win32!!! svn path=/trunk/; revision=11921
2004-09-07Added graphical SCTP analysis implemented by Irene Ruengeler.Michael Tüxen10-2/+5671
svn path=/trunk/; revision=11920
2004-09-06From Graeme Hewson: wrap the authors list in ".nf"/".fi" in the man pageGuy Harris1-1/+10
and "<pre>"/"</pre>", to make sure it doesn't get word-wrapped (the "start each line with a blank" trick doesn't work on current versions of pod2html). svn path=/trunk/; revision=11919
2004-09-06Put the UTF-8 mark back into the file (maybe *that'll* convince TextEditGuy Harris1-19/+19
to open it as a UTF-8 file). Convert from ISO 8859/1 to UTF-8, and put the a-ring into a name. Fix some bad characters. svn path=/trunk/; revision=11918
2004-09-06next steps for a "Decode As" for DCE-RPC interfaces (commented out)Ulf Lamping1-15/+207
svn path=/trunk/; revision=11917
2004-09-06rename add_conv_to_dcerpc_bind_table to dcerpc_add_conv_to_bind_table and ↵Ulf Lamping3-9/+11
don't use packet_info as a parameter svn path=/trunk/; revision=11916
2004-09-06From Marten Svantesson: according to Tomas Anders, all versions of HeimdalGuy Harris2-2/+3
will either have "heimdal", in all lower case, in the version string in the header file, or will write out, when you run "krb5-config --version", a version string with "heimdal" in all lower case, so we don't need to do case-insensitive matching, which is good - not all versions of "sed" support the "i" flag (although you can do case-insensitive matching by using regular expressions, if necessary). svn path=/trunk/; revision=11915
2004-09-06updated URL'sUlf Lamping4-7/+6
svn path=/trunk/; revision=11914
2004-09-06as dependencies are currently not payed attention to, also create the single ↵Ulf Lamping1-2/+2
paged html every the time, regardless of dependencies svn path=/trunk/; revision=11913
2004-09-06Add the capability to chose to remap the fist two PPIDS in each SCTP packet ↵Michael Tüxen3-9/+48
to a different dissector. svn path=/trunk/; revision=11912
2004-09-06Renamed the T-Bit in ABORT and SHUTDOWN-COMPLETE chunks as in the upcoming IG.Michael Tüxen1-9/+12
Initial support of SCTP-AUTH. svn path=/trunk/; revision=11911
2004-09-06Update x509SAT to export DirectoryString.Ronnie Sahlberg8-11/+59
Update X509CE to dissect EDIPartyName now that DirectoryString can be dissected svn path=/trunk/; revision=11910
2004-09-06Update to X509 Certificate Extensions. Make it also decode Ronnie Sahlberg2-1/+11
GeneralName.directoryName (since we already implemented the Name type from X509IF already long time ago) svn path=/trunk/; revision=11909
2004-09-05Various minor changes, e.g. added a small chapter about "The GLib library"Ulf Lamping5-49/+96
svn path=/trunk/; revision=11908