Skip to content
lordnull edited this page Dec 12, 2011 · 1 revision

The equivalent to agent_web_listener, only using protobufs wrapped in netstrings over tcp.

Configuration

Port is which port the tcp server listens on.

If SSL is checked, the tcp connection will be upgraded to SSL. The client side is notified.

Radix is the radix used to wrap protobufs in the netstrings. Can be any integer between 2 and 36. Defaults to 10 for base 10. Anything other than 10 is against the netstring spec. Larger radix's denote the lenght longer binaries in fewer characters. For example, the binary "this is 26 characters long" would be encoded like so:

radix result
10 26:this is 26 characters long,
2 11010:this is 26 characters long,
36 Q:this is 26 characters long,
5 101:this is 26 characters long,

Future Improvements

This will be maintained and extended at the same pace as the web widget.


back to Configuring Modules