How can I send TCP packets directly through libp2p? #2462
-
Hello! I'm not sure if there's a better use case for this, but I would like to relay TCP packets from a server to clients using libp2p instead of port forwarding. Is there a general method I can use to do this? |
Beta Was this translation helpful? Give feedback.
Answered by
mxinden
Jan 31, 2022
Replies: 1 comment
-
You could build your own via https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#ipfs-p2p Let me know if this is of some help. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tristan-f-r
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could build your own via
libp2p-request-response
, or you make sure of what IPFS already has to offer:https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#ipfs-p2p
Let me know if this is of some help.