From d3159c697322bbbae53af777175720c89e00bd3e Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Fri, 16 Jan 2015 10:23:00 +0100 Subject: [PATCH] lzs.h: added license --- src/lzs.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/lzs.h b/src/lzs.h index 869bb658..2187b283 100644 --- a/src/lzs.h +++ b/src/lzs.h @@ -1,2 +1,20 @@ +/* + * OpenConnect (SSL + DTLS) VPN client + * + * Copyright © 2008-2014 Intel Corporation. + * Copyright © 2008 Nick Andrew + * + * Author: David Woodhouse + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + */ + int lzs_decompress(unsigned char *dst, int dstlen, const unsigned char *src, int srclen); int lzs_compress(unsigned char *dst, int dstlen, const unsigned char *src, int srclen);