Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 665 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 665 Bytes

About

Simple C++ library for communicating with the EasyTse middleware (see https://www.tse-easy.de)
Currently this library is heavily under development.
Supported TSE features:

  • Ping
  • StartTransaction

Requirements

Tested on MacOsX (arm64) and Ubuntu 21.10 (amd64).

Build

    mkdir build
    cd build
    cmake .. -DCMAKE_BUILD_TYPE=Debug -DBOOST_ROOT=<path/to/your/boost/installation>
    cmake --build .

Create a server socket for testing

    netcat -k -l 4444

Create ssh tunnel to server

    ssh -L 8081:127.0.0.1:8081 <user>@<server> -p <port>