summaryrefslogtreecommitdiff
path: root/lib/libtls/tls_internal.h
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2016-08-02 07:47:12 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2016-08-02 07:47:12 +0000
commit22ea2b909d0b7a82fc931901cf87bb6061b0f8fe (patch)
tree779ddd366525e717d5c93dfaed37826932189276 /lib/libtls/tls_internal.h
parentdc5c640cd385c0f89fc887fe543c943e04f9dedd (diff)
Revert previous since it adds new symbols.
Requested by deraadt@
Diffstat (limited to 'lib/libtls/tls_internal.h')
-rw-r--r--lib/libtls/tls_internal.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libtls/tls_internal.h b/lib/libtls/tls_internal.h
index 17358429c7e..be5d659e68e 100644
--- a/lib/libtls/tls_internal.h
+++ b/lib/libtls/tls_internal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls_internal.h,v 1.33 2016/08/01 17:32:19 jsing Exp $ */
+/* $OpenBSD: tls_internal.h,v 1.34 2016/08/02 07:47:11 jsing Exp $ */
/*
* Copyright (c) 2014 Jeremie Courreges-Anglas <jca@openbsd.org>
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
@@ -55,8 +55,6 @@ struct tls_keypair {
struct tls_config {
struct tls_error error;
- char *alpn;
- size_t alpn_len;
const char *ca_file;
const char *ca_path;
char *ca_mem;
@@ -75,7 +73,6 @@ struct tls_config {
};
struct tls_conninfo {
- char *alpn;
char *issuer;
char *subject;
char *hash;
@@ -107,7 +104,6 @@ struct tls {
SSL *ssl_conn;
SSL_CTX *ssl_ctx;
X509 *ssl_peer_cert;
-
struct tls_conninfo *conninfo;
};