aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl-utils.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2016-07-17 15:24:55 -0400
committerPeter Wu <peter@lekensteyn.nl>2016-07-18 10:43:23 +0000
commit468a5e27255190cc7cfa2e52a2b54578dcb9e1d8 (patch)
treef3084560153d3d71dc7509ec942bd4d0ea6582b5 /epan/dissectors/packet-ssl-utils.h
parent752ba1abad6f549616ab65418522a067c58f0f24 (diff)
Use follow_record_t in SSL follow stream.
... rather than a structure (SslDecryptedRecord) which looks (mostly) like a follow_record_t. (The biggest different is the former carries its data in a StringInfo while the latter uses a GByteArray.) With this change following SSL no longer needs its own special code. This also fixes a crash after saving a followed SSL stream (in the Qt UI). Bug: 12616 Change-Id: Ibdb2b85f8a6a30712743a5da420be1e6b78f5b92 Reviewed-on: https://code.wireshark.org/review/16516 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.h')
-rw-r--r--epan/dissectors/packet-ssl-utils.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/epan/dissectors/packet-ssl-utils.h b/epan/dissectors/packet-ssl-utils.h
index 5c04255c8f..dd109a2d96 100644
--- a/epan/dissectors/packet-ssl-utils.h
+++ b/epan/dissectors/packet-ssl-utils.h
@@ -403,12 +403,6 @@ typedef struct _SslDecryptSession {
} SslDecryptSession;
-typedef struct {
- gboolean is_from_server;
- guint32 packet_num;
- StringInfo data;
-} SslDecryptedRecord;
-
/* User Access Table */
typedef struct _ssldecrypt_assoc_t {
char* ipaddr;