Go to file
DanyLE d4b43a40c3
gitea-sync/antd-tunnel-plugin/pipeline/head This commit looks good Details
fix(CI): use cross toolchain
2024-03-13 23:42:08 +01:00
dist use network byte order in message 2021-11-27 12:29:28 +01:00
.drone.yml Update .drone.yml 2021-10-04 22:16:35 +02:00
Jenkinsfile fix(CI): use cross toolchain 2024-03-13 23:42:08 +01:00
LICENSE Create LICENSE 2020-12-25 19:27:48 +01:00
Makefile.am refactory code, fix seg error 2020-08-06 23:17:07 +02:00
README.md Update README.md 2021-01-31 18:14:43 +01:00
configure.ac feat: update code to support antd 2.0.0 new plugin interface 2024-03-13 18:15:44 +01:00
tunnel.c feat: update code to support antd 2.0.0 new plugin interface 2024-03-13 18:15:44 +01:00

README.md

antd-tunnel-plugin

tunnel is an antd plugin providing a generic purpose publish/subscribe message protocol using a single websocket connection.

Build from source

As tunnel is an Antd's plugin, the server must be pre-installed

build dep

  • git
  • make
  • build-essential
  • ant-http (libantd.so)

build

When all dependencies are installed, the build can be done with a few single command lines:

mkdir tunnel
cd tunnel
# replace x.x.x by a version number
wget -O- https://get.iohub.dev/antd_plugin | bash -s "tunnel-x.x.x"

# or install from a tarball distribution in dist/
tar xvzf tunnel-x.x.x.tar.gz
cd tunnel-x.x.x
./configure --prefix=/opt/www --enable-debug=yes
make
sudo make install

Generate distribution

libtoolize
aclocal
autoconf
automake --add-missing
make distcheck