Mercurial > prosody-wiki
comparison mod_proxy65.wiki @ 77:85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
author | MWild1 |
---|---|
date | Sat, 31 Oct 2009 01:08:16 +0000 |
parents | 749a8b7f07dc |
children | 06542881ba44 |
comparison
equal
deleted
inserted
replaced
76:cde49830609d | 77:85a049a790ed |
---|---|
1 #summary XEP-0065: SOCKS5 Bytestreams | 1 #summary XEP-0065: SOCKS5 Bytestreams file transfer proxy |
2 #labels Stage-Beta | 2 #labels Stage-Beta |
3 | 3 |
4 = Introduction = | 4 = Introduction = |
5 | 5 |
6 mod_proxy65 implements XEP-0065: SOCKS5 Bytestreams as a component. | 6 mod_proxy65 implements XEP-0065: SOCKS5 Bytestreams as a component. It allows the server to proxy file transfers between 2 clients that are behind NAT routers or firewalls, and otherwise wouldn't be able to transfer files. |
7 | 7 |
8 = Details = | 8 = Details = |
9 Done. should work as expected! | 9 Once set up, depending on which client you are using the proxy may be automatically used, or the client may have to be configured. Consult your client's friendly documentation for more information :) |
10 | 10 |
11 = TODO = | 11 = Usage = |
12 * optional Support UDP | 12 {{{ |
13 Component "proxy.example.com" "proxy65" | |
14 }}} | |
15 | |
16 = Configuration = | |
17 Although none are required, under the Component section mod_proxy65 understands several configuration options: | |
18 | |
19 ||proxy65_interface||The server's interface (IP address) to bind (listen) on (default is "*", meaning all interfaces)|| | |
20 ||proxy65_address||The advertised address of the proxy, which clients use to connect to (default is the same as the hostname of the component)|| | |
21 ||proxy65_port||The port on the server to which clients should connect (default is port 5000)|| | |
22 | |
23 = Compatibility = | |
24 ||0.6||Works|| | |
25 ||0.5||Should work|| | |
26 | |
27 = Todo = | |
28 * Optional support for UDP connections | |
29 * Access control | |
30 * Statistics, bandwidth limits/monitoring |