summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2018-02-10 04:58:08 +0000
committerjsing <>2018-02-10 04:58:08 +0000
commit82739088d1cc6490852b6d2c5396e239d82a1320 (patch)
treeb9ecf06d2084fe9e75a14e4feb7a6d94c447b742 /src
parent55d7f5b4e436517c599ae10fb98d503022d8cca3 (diff)
downloadopenbsd-82739088d1cc6490852b6d2c5396e239d82a1320.tar.gz
openbsd-82739088d1cc6490852b6d2c5396e239d82a1320.tar.bz2
openbsd-82739088d1cc6490852b6d2c5396e239d82a1320.zip
Bump TLS API version since we've added more functionality.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libtls/tls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libtls/tls.h b/src/lib/libtls/tls.h
index 8d66c2fbaa..9f5379e65e 100644
--- a/src/lib/libtls/tls.h
+++ b/src/lib/libtls/tls.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls.h,v 1.52 2018/02/10 04:41:24 jsing Exp $ */ 1/* $OpenBSD: tls.h,v 1.53 2018/02/10 04:58:08 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -27,7 +27,7 @@ extern "C" {
27#include <stddef.h> 27#include <stddef.h>
28#include <stdint.h> 28#include <stdint.h>
29 29
30#define TLS_API 20170126 30#define TLS_API 20180210
31 31
32#define TLS_PROTOCOL_TLSv1_0 (1 << 1) 32#define TLS_PROTOCOL_TLSv1_0 (1 << 1)
33#define TLS_PROTOCOL_TLSv1_1 (1 << 2) 33#define TLS_PROTOCOL_TLSv1_1 (1 << 2)