diff options
author | 2018-02-10 04:58:08 +0000 | |
---|---|---|
committer | 2018-02-10 04:58:08 +0000 | |
commit | cda4f3c75dfcef538238651df092bc10d629a494 (patch) | |
tree | 0bb89d9f3418233befd366f396e10a712ae79012 | |
parent | Move the keypair pubkey hash handling code to during config. (diff) | |
download | wireguard-openbsd-cda4f3c75dfcef538238651df092bc10d629a494.tar.xz wireguard-openbsd-cda4f3c75dfcef538238651df092bc10d629a494.zip |
Bump TLS API version since we've added more functionality.
-rw-r--r-- | lib/libtls/tls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtls/tls.h b/lib/libtls/tls.h index 8d66c2fbaad..9f5379e65ef 100644 --- a/lib/libtls/tls.h +++ b/lib/libtls/tls.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls.h,v 1.52 2018/02/10 04:41:24 jsing Exp $ */ +/* $OpenBSD: tls.h,v 1.53 2018/02/10 04:58:08 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -27,7 +27,7 @@ extern "C" { #include <stddef.h> #include <stdint.h> -#define TLS_API 20170126 +#define TLS_API 20180210 #define TLS_PROTOCOL_TLSv1_0 (1 << 1) #define TLS_PROTOCOL_TLSv1_1 (1 << 2) |