oxen-io / lokinet

Lokinet is an anonymous, decentralized and IP based overlay network for the internet.
https://lokinet.org/
GNU General Public License v3.0
1.72k stars 220 forks source link

Lokinet default to RPC socket #2110

Closed dr7ana closed 1 year ago

dr7ana commented 1 year ago

Current Functionality

lokinet.ini (under the [api] section) defaults to bind=tcp://127.0.0.1:1190

2057 adds the ability to access an IPC socket by changing the line to bind=ipc:///some/path/my.sock

Desired Functionality

Lokinet should be able to bind to multiple listening addresses instead of one, by repeating the bind=... line such as

bind=tcp://127.0.0.1:1190 bind=ipc:///some/path/my.sock

TODO (so far)