aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dtls.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-09-14 08:30:31 -0700
committerAnders Broman <a.broman58@gmail.com>2018-09-25 13:24:17 +0000
commit50dbe4df7fd7a5e4e1a27fd5046981486d350994 (patch)
treeb671e5f91ee62fd7f38836e656ff1c5952afb454 /epan/dissectors/packet-dtls.c
parent8e594bb4579b628f23315dcb07d6850826b663f4 (diff)
Rename packet-ssl* to packet-tls*
Rename packet-ssl{,-utils}.[ch] to packet-tls{,-utils}.[ch]. Change-Id: I4732162ec131ddf0734b3dd191ccc9e48a76ce06 Reviewed-on: https://code.wireshark.org/review/29659 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-dtls.c')
-rw-r--r--epan/dissectors/packet-dtls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-dtls.c b/epan/dissectors/packet-dtls.c
index 9a9f08f762..363a301103 100644
--- a/epan/dissectors/packet-dtls.c
+++ b/epan/dissectors/packet-dtls.c
@@ -15,9 +15,9 @@
* See RFC 4347 for details about DTLS specs.
*
* Notes :
- * This dissector is based on the TLS dissector (packet-ssl.c); Because of the similarity
+ * This dissector is based on the TLS dissector (packet-tls.c); Because of the similarity
* of DTLS and TLS, decryption works like TLS with RSA key exchange.
- * This dissector uses the sames things (file, libraries) as the TLS dissector (gnutls, packet-ssl-utils.h)
+ * This dissector uses the sames things (file, libraries) as the TLS dissector (gnutls, packet-tls-utils.h)
* to make it easily maintainable.
*
* It was developed to dissect and decrypt the OpenSSL v 0.9.8f DTLS implementation.
@@ -30,7 +30,7 @@
* Todo :
* - activate correct Mac calculation when openssl will be corrected
* (or if an other implementation works),
- * corrected code is ready and commented in packet-ssl-utils.h file.
+ * corrected code is ready and commented in packet-tls-utils.h file.
* - add missing things (desegmentation, reordering... that aren't present in actual OpenSSL implementation)
*/
@@ -50,7 +50,7 @@
#include <wsutil/strtoi.h>
#include <wsutil/utf8_entities.h>
#include <wsutil/rsa.h>
-#include "packet-ssl-utils.h"
+#include "packet-tls-utils.h"
#include "packet-dtls.h"
void proto_register_dtls(void);