summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libtls/tls_internal.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/libtls/tls_internal.h b/src/lib/libtls/tls_internal.h
index f266996a4c..e9a8b3340d 100644
--- a/src/lib/libtls/tls_internal.h
+++ b/src/lib/libtls/tls_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls_internal.h,v 1.37 2016/08/15 14:04:23 jsing Exp $ */ 1/* $OpenBSD: tls_internal.h,v 1.38 2016/08/15 15:41:50 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Jeremie Courreges-Anglas <jca@openbsd.org> 3 * Copyright (c) 2014 Jeremie Courreges-Anglas <jca@openbsd.org>
4 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
@@ -73,13 +73,14 @@ struct tls_config {
73 73
74struct tls_conninfo { 74struct tls_conninfo {
75 char *alpn; 75 char *alpn;
76 char *cipher;
77 char *version;
78
79 char *hash;
76 char *issuer; 80 char *issuer;
77 char *subject; 81 char *subject;
78 char *hash;
79 char *serial; 82 char *serial;
80 char *fingerprint; 83
81 char *version;
82 char *cipher;
83 time_t notbefore; 84 time_t notbefore;
84 time_t notafter; 85 time_t notafter;
85}; 86};