mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-03-06 14:56:59 +08:00
20 lines
781 B
C
20 lines
781 B
C
/*
|
|
* OpenConnect (SSL + DTLS) VPN client
|
|
*
|
|
* Copyright © 2008-2015 Intel Corporation.
|
|
*
|
|
* Author: David Woodhouse <dwmw2@infradead.org>
|
|
*
|
|
* 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);
|