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

anygram

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anygram

Datagram forwarding behind NAT

  • 0.2.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

AnyGram

Datagram forwarding behind NAT

Anygram uses STUN to get the mapped address, IRC to signal peers.

Install

npm -g install anygram@latest

CLI

Server
anygram -n [serverNick] -m server -P [serverPort]
Client
anygram -n [clientNick] -m client -s [serverNick] -p [clientPort] -P 
[serverPort]

The commands above will forward packets to 127.0.0.1:clientPort@client to 127.0.0.1:serverPort@server. For more options, see anygram --help

To run the commands forever, consider using forever

API

var anygram = require('anygram')(config);

The config options is also listed in anygram --help

In AnyGram, all sockets are UDP sockets.

anygram.punch(socket)

Returns a promise of socket. socket.rinfo may change if the remote NAT is symmetric. The punching process usually succeeds if not both NATs are symmetric.

socket is a UDP socket plus two attributes linfo and rinfo, obtained by calling anygram.stun

The rinfo.punchTime attribute also indicates when to start punching. This option is to make sure both sides start punching at the same time in spite of the (sometimes huge) IRC time lag.

anygram.stun(stunServer)

Returns a promise of socket. socket.linfo will include the mapped port, address and the NAT type.

stunServer is the hostname of a stun server listening at 3478

anygram.irc(config)

Returns an IRC client.

The config should specify the name and pass(if any) of your IRC account. The IRC server's host and port are optional. The client will send PING packets at the keepalive interval.

anygram.connect(irc, to, rinfo)

Returns a promise of socket.

irc is the IRC client

to is the name of the peer you are connecting to

rinfo(optional) is specified if you already got peer's rinfo

anygram.createServer(irc, onconn, onerr)

Start listening on the irc client for incoming connections

onconn is called when connected with a peer successfully

onerr is called on error

anygram.send(socket, msg, lport, rport)

Sends msg with 4 bytes header (lport and rport)

anygram.onrecv(socket, cb)

Parses received messages to cb(msg, lport, rport)

Notice that the rport@remote will become lport@local and vice versa.

Credits

Keywords

FAQs

Package last updated on 08 Jan 2017

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