aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ssl.c
AgeCommit message (Collapse)AuthorFilesLines
2001-11-21Get rid of some unused variables.Guy Harris1-2/+1
svn path=/trunk/; revision=4240
2001-10-16Update from Scott Renfro: a simple patch that adds support for FIPSGuy Harris1-1/+13
Cipher Suite identifiers. svn path=/trunk/; revision=4033
2001-09-14Make the resolution for time values be nanoseconds rather thanGuy Harris1-4/+4
microseconds. Fix some "signed vs. unsigned" comparison warnings. svn path=/trunk/; revision=3934
2001-09-03Instead of having a single datum attached to a conversation, have a listGuy Harris1-12/+33
of protocol-id-plus-datum pairs, so that multiple protocols can attach information to the same conversation. Dissectors that attach information to a conversation should not assume that if they find a conversation it has one of its data attached to it; the conversation might've been created by another dissector. svn path=/trunk/; revision=3901
2001-07-16"Cipher", not "Cypher".Guy Harris1-2/+2
svn path=/trunk/; revision=3727
2001-07-16Put back the protocol tree fields for items with subtrees - but asGuy Harris1-34/+75
FT_NONE, not FT_STRING, as they have no value assigned to them. Don't use "hf_ssl_handshake_certificate" both for the collection of all certificates and for individual certificates, add a new "hf_ssl_handshake_certificates" FT_NONE field for the collection of all certificates, as is done for other collections. Properly pluralize the "N specs" in the item for the collection of cipher specs. Properly label the second "ssl.record" as "SSLv2 record data", not "Length of SSLv2 record data". Fix a typo in the field name of the field for the length of the collection of certificates. svn path=/trunk/; revision=3725
2001-07-16Put various length fields into the protocol tree.Guy Harris1-92/+98
Opaque fields should be FT_BYTES, not FT_STRING; FT_STRING is for text strings. Don't supply a null value when putting an FT_BYTES field into the tree; supply a pointer to the actual bytes. For items with subtrees, use "proto_tree_add_text()" if the actual value of all the stuff under the subtree, treated as a big array of bytes, isn't interesting (e.g., if the individual items are put into the protocol tree). Also, make the items with subtrees refer to the same data as all the items under them. svn path=/trunk/; revision=3724
2001-07-15Fix from Scott Renfro - one field had a name beginning with "ss" ratherGuy Harris1-2/+2
than "ssl". Remove duplicate credits for Scott in the AUTHORS file and man page. svn path=/trunk/; revision=3721
2001-07-11SSL/TLS support, from Scott Renfro.Guy Harris1-0/+2463
svn path=/trunk/; revision=3692