summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-10-09 22:04:33 +0000
committertedu <tedu@openbsd.org>2014-10-09 22:04:33 +0000
commit101c659d883c00dba4477b17ecc3e597e8b455d8 (patch)
tree93149895d0c506143bd1034baa535b09fbb86d24
parentInstead of trying to emulate select/poll semantics with respect to EOF (diff)
downloadwireguard-openbsd-101c659d883c00dba4477b17ecc3e597e8b455d8.tar.xz
wireguard-openbsd-101c659d883c00dba4477b17ecc3e597e8b455d8.zip
add an API version number. ok jsing
-rw-r--r--lib/libressl/ressl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libressl/ressl.h b/lib/libressl/ressl.h
index 2cad4b4d43d..0795a331625 100644
--- a/lib/libressl/ressl.h
+++ b/lib/libressl/ressl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ressl.h,v 1.18 2014/10/03 14:14:40 tedu Exp $ */
+/* $OpenBSD: ressl.h,v 1.19 2014/10/09 22:04:33 tedu Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
*
@@ -18,6 +18,8 @@
#ifndef HEADER_RESSL_H
#define HEADER_RESSL_H
+#define RESSL_API 20141008
+
#define RESSL_PROTOCOL_SSLv3 (1 << 0)
#define RESSL_PROTOCOL_TLSv1_0 (1 << 1)
#define RESSL_PROTOCOL_TLSv1_1 (1 << 2)