Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tcpkissserver

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tcpkissserver

TCP KISS server to connect software to Reticulum (RNS)

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

TCP KISS Server

TCP KISS server for connecting software applications to Reticulum using its built-in TCP client interface (with kiss framing enabled).

Reticulum Configuration

Reticulum will need to be configured appropriately to interact with the TCP KISS server. Using the default server IP address and port number would look like this:

[[TCP KISS Interface]]
    type = TCPClientInterface
    interface_enabled = True
    kiss_framing = True
    target_host = 127.0.0.1
    target_port = 8001

See the TCP Client Interface section in the Reticulum manual for more information.

Note that the server IP address and port number are configurable:

server = tcpkissserver.Server(bind_ip='192.168.0.5', bind_port=8005, tx_callback=my_function)

Be sure to configure Reticulum to match.

Example

import fskmodem
import tcpkissserver

modem = fskmodem.Modem()
server = tcpkissserver.Server(tx_callback=modem.send)
modem.set_rx_callback(server.receive)

Data received by the modem will be passed to the server which will then pass the data to Reticulum. Data sent by Reticulum will be received by the server which will then pass the data to the modem for transmitting.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc