FAF
FAF (Fire And Forget) is a simple HTTP(s) relayer.
Start it on an endpoint, send URLs over the endpoint, and it will make HTTP requests to each URL it sees.
The responses are generally meant to be ignored (or just monitored for success).
Installation
$ pip install --user faf
should install the latest version with its dependencies.
Sample Usage
$ faf --lf tcp:40001
will start a relayer which listens on TCP port 40001 for LF (n) delimited URLs, logging each relayed URL to standard output.
See the Endpoints HowTo
for details on endpoints' strports (the tcp:40001
).
More options are also available, see faf --help
for details.