5 releases

new 0.1.5 Apr 18, 2024
0.1.4 Apr 18, 2024
0.1.0 Mar 17, 2024

#1583 in Network programming

Download history 127/week @ 2024-03-16 9/week @ 2024-03-23 17/week @ 2024-03-30 105/week @ 2024-04-06

258 downloads per month
Used in openconnect-core

LGPL-2.1

775KB
11K SLoC

Contains (Windows DLL, 430KB) wintun.dll

Build guide

Pre-request

according to the openconnect build guide, you should install the following packages as dependencies.

For Ubuntu

apt install libxml2
apt install zlib1g zlib1g-dev
apt install openssl libssl-dev
apt install liblz4-dev liblzma-dev
apt install pkg-config

For building tools (if you don't want to use the prebuilt openconnect):

apt install automake # for aclocal
apt install libtool # for libtoolize
apt install gettext # for msgfmt

For MacOS

brew install libxml2
brew install zlib
brew install openssl
brew install pkg-config

For building tools (if you don't want to use the prebuilt openconnect):

brew install automake # for aclocal
brew install libtool # for libtool
brew install gettext # for msgfmt

For Windows (MSYS2 MINGW64)

Download MSYS2

Switch rust toolchain to windows-gnu

rustup default stable-x86_64-pc-windows-gnu

You have to use MSYS2 MINGW64 shell to build the library for 64-bit Windows.

pacman -S base-devel mingw-w64-x86_64-toolchain
pacman -S automake
pacman -S libtool
pacman -S gettext
pacman -S autotools
pacman -S pkg-config

pacman -S openssl openssl-devel mingw-w64-x86_64-openssl
pacman -S libxml2 libxml2-devel mingw-w64-x86_64-libxml2
pacman -S libiconv libiconv-devel mingw-w64-x86_64-libiconv
pacman -S zlib zlib-devel mingw-w64-x86_64-zlib
pacman -S liblz4 liblz4-devel mingw-w64-x86_64-lz4
pacman -S liblzma liblzma-devel mingw-w64-x86_64-xz
pacman -S icu icu-devel mingw-w64-x86_64-icu

By default, we use the prebuilt openconnect static lib, which is downloaded from sourceforge.

If you want to build the openconnect static lib when building the crate, you can add environment variable to your .cargo/config file.

[env]
OPENCONNECT_USE_PREBUILT = "false"

A further investigation of manual build can be found in MANUAL_BUILD.md.

Dependencies

~0.3–4.5MB
~79K SLoC