diff options
Diffstat (limited to 'libtransport/src/transport.config')
-rw-r--r-- | libtransport/src/transport.config | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libtransport/src/transport.config b/libtransport/src/transport.config new file mode 100644 index 000000000..a21175b8d --- /dev/null +++ b/libtransport/src/transport.config @@ -0,0 +1,27 @@ +// Configuration for io_module + +io_module = { + path = []; + name = "forwarder_module"; +}; + +forwarder = { + n_threads = 1; + + listeners = { + l0 = { + local_address = "127.0.0.1"; + local_port = 33436; + } + }; + + connectors = { + c0 = { + /* local_address and local_port are optional */ + local_address = "127.0.0.1"; + local_port = 33436; + remote_address = "10.20.30.40"; + remote_port = 33436; + } + }; +};
\ No newline at end of file |