summaryrefslogtreecommitdiff
path: root/doc/it/autogen/user/relay_commands.asciidoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2016-05-15 08:52:19 +0200
committerSébastien Helleu <flashcode@flashtux.org>2016-05-15 08:52:19 +0200
commitb7bdbbdc505879450494bc75b706e2997e25120f (patch)
treebe3b6716c2706a9505278d05ae9cfbec5ffbdac5 /doc/it/autogen/user/relay_commands.asciidoc
parent81fa60a23a29e3bb6525494587008d75eae44f28 (diff)
downloadweechat-b7bdbbdc505879450494bc75b706e2997e25120f.zip
core: rename .asciidoc files to .adoc (issue #722)
Diffstat (limited to 'doc/it/autogen/user/relay_commands.asciidoc')
-rw-r--r--doc/it/autogen/user/relay_commands.asciidoc57
1 files changed, 0 insertions, 57 deletions
diff --git a/doc/it/autogen/user/relay_commands.asciidoc b/doc/it/autogen/user/relay_commands.asciidoc
deleted file mode 100644
index d092a4ab6..000000000
--- a/doc/it/autogen/user/relay_commands.asciidoc
+++ /dev/null
@@ -1,57 +0,0 @@
-//
-// This file is auto-generated by script docgen.py.
-// DO NOT EDIT BY HAND!
-//
-[[command_relay_relay]]
-* `+relay+`: controllo relay
-
-----
-/relay list|listfull|listrelay
- add <name> <port>
- del|stop|restart <name>
- raw
- sslcertkey
-
- list: list relay clients (only active relays)
- listfull: list relay clients (verbose, all relays)
- listrelay: list relays (name and port)
- add: add a relay (listen on a port)
- del: remove a relay (clients remain connected)
- stop: close the server socket (clients remain connected)
- restart: close the server socket and listen again on port (clients remain connected)
- name: relay name (see format below)
- port: port used for relay
- raw: open buffer with raw Relay data
- sslcertkey: set SSL certificate/key using path in option relay.network.ssl_cert_key
-
-Relay name is: [ipv4.][ipv6.][ssl.]<protocol.name>
- ipv4: force use of IPv4
- ipv6: force use of IPv6
- ssl: enable SSL
-protocol.name: protocol and name to relay:
- - protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password")
- - protocol "weechat" (name is not used)
-
-The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port.
-The "weechat" protocol allows a remote interface to connect on the port, see the list here: https://weechat.org/download/
-
-Without argument, this command opens buffer with list of relay clients.
-
-Examples:
- irc proxy, for server "freenode":
- /relay add irc.freenode 8000
- irc proxy, for server "freenode", with SSL:
- /relay add ssl.irc.freenode 8001
- irc proxy, for all servers (client will choose), with SSL:
- /relay add ssl.irc 8002
- weechat protocol:
- /relay add weechat 9000
- weechat protocol with SSL:
- /relay add ssl.weechat 9001
- weechat protocol with SSL, using only IPv4:
- /relay add ipv4.ssl.weechat 9001
- weechat protocol with SSL, using only IPv6:
- /relay add ipv6.ssl.weechat 9001
- weechat protocol with SSL, using IPv4 + IPv6:
- /relay add ipv4.ipv6.ssl.weechat 9001
-----