aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls/tls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libtls/tls.h')
-rw-r--r--src/libtls/tls.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libtls/tls.h b/src/libtls/tls.h
index ba9ede99b..2bed4cb36 100644
--- a/src/libtls/tls.h
+++ b/src/libtls/tls.h
@@ -101,6 +101,19 @@ enum tls_purpose_t {
};
/**
+ * TLS Hello extension types.
+ */
+enum tls_extension_t {
+ /** supported signature algorithms */
+ TLS_EXT_SIGNATURE_ALGORITHMS = 13,
+};
+
+/**
+ * Enum names for tls_extension_t
+ */
+extern enum_name_t *tls_extension_names;
+
+/**
* A bottom-up driven TLS stack, suitable for EAP implementations.
*/
struct tls_t {