Socket
Socket
Sign inDemoInstall

tcpbridge

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tcpbridge


Maintainers
1

.. image:: https://semaphoreci.com/api/v1/projects/be1ed091-9d94-49d5-8391-781d1f1d76b8/1282662/shields_badge.svg .. image:: https://img.shields.io/pypi/pyversions/tcpbridge.svg .. image:: https://img.shields.io/pypi/v/tcpbridge.svg

TCP bridge for data transfer

Requirements

Only for tests

  • pytest
  • pytest-cov

Install/Uninstall

.. code-block:: sh

make install make uninstall

Example

.. code-block:: python

import socket from tcpbridge import SocketSink, TCPBridge

svr_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) svr_sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) svr_sock.bind(('localhost', 9002)) svr_sock.listen(1)

cli_sock, _ = svr_sock.accept() socket_sink = SocketSink(sock=cli_sock)

Single endpoint TCP Bridge


  In background

.. code-block:: python

  bridge = TCPBridge(sink=socket_sink, port_in=9000)
  bridge.start()
  ...
  bridge.stop()


Dual endpoint TCP Bridge  

In foreground

.. code-block:: python

bridge = TCPBridge(sink=socket_sink, port_in=9000, port_out=9001) bridge.start(in_background=False) ... bridge.stop()

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