Please include socat

  • I think you need to include a description of what socat does, how you intend to use it, and how you feel it could enhance LE as a media server.

    Remember that LE is "just enough for Kodi" so if it doesn't offer any real benefits, I doubt if it will be included.

    However saying that, have you investigated whether is can run standalone on your system? if so it could be run from you local /storage.

  • Quite old thread, but what worked for me is compile "socat" it from sources in an Ubuntu Desktop 20.04 LTS x64 VM and copy it over to /storage/.kodi/addons/virtual.network-tools/bin

    On the Ubuntu 20.04 LTS x64 VM run (works also booting live CD without install):

    sudo apt update
    sudo apt install make binutils gcc-arm-linux-gnueabihf
    wget http://www.dest-unreach.org/socat/download…-1.8.0.0.tar.gz
    tar -xvf socat-1.8.0.0.tar.gz
    cd socat-1.8.0.0
    ./configure --host=arm-linux-gnueabihf
    make

    Then copy "socat" binary over and you're ready to go.

    Hope it helps.