32 lines
851 B
Markdown
32 lines
851 B
Markdown
|
# ouch-relay
|
||
|
|
||
|
ouchnets official relay client
|
||
|
|
||
|
## config
|
||
|
|
||
|
```
|
||
|
{
|
||
|
"networks": [
|
||
|
{
|
||
|
"url": "irc.ouch.chat:6667",
|
||
|
"nick": "relay1",
|
||
|
"channel": "#testing",
|
||
|
"name": "ouchNET",
|
||
|
},
|
||
|
{
|
||
|
"url": "irc.whatever.chat:6667",
|
||
|
"nick": "relay2",
|
||
|
"channel": "#test",
|
||
|
"name": "whateverNET",
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
```
|
||
|
|
||
|
- `url` is the domain or ip of server with :PORT
|
||
|
- `nick` is the nickname you want the relay to use
|
||
|
- `channel` is the channel you want the relay to occupy
|
||
|
- `name` is the network Identifier for the relay
|
||
|
- `recvonly` set to `true` to make connection only recieve relays, not send
|
||
|
|
||
|
you may specify as many networks as you want under the json `"netoworks"` array. All networks will then have specified channels relayed across all networks
|