|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.ProxyPoint
public class ProxyPoint
Firewall and NAT-busting functionality for JiST (and any RMI client). Basic idea is to avoid any incoming connections. All parties make outgoing connections to the central ProxyPoint, and the ProxyPoint connects people up and marshalls information back and forth. None of this is very efficient, but it works well enough to hooks up scores of clients to scores of servers all over the world! In other words, it's one big hack that does the job.
Nested Class Summary | |
---|---|
static class |
ProxyPoint.ProxyAcceptSocket
A Socket on the server-side that operates via the ProxyPoint proxy. |
static class |
ProxyPoint.ProxyClientSocket
A Socket on the client-side that operates via the ProxyPoint proxy. |
static class |
ProxyPoint.ProxyServerSocket
A ServerSocket that operates via the ProxyPoint proxy. |
static class |
ProxyPoint.ProxySocketFactory
An RMI socket factory that returns proxied sockets. |
static class |
ProxyPoint.StreamPump
A Runnable object that pumps from an InputStream to an OutputStream. |
Field Summary | |
---|---|
static byte |
COMMAND_CONNECT
proxy server command constant. |
static byte |
COMMAND_CONNECTED
proxy server command constant. |
static byte |
COMMAND_INVALID
proxy server command constant. |
static byte |
COMMAND_LISTEN
proxy server command constant. |
static byte |
COMMAND_NOOP
proxy server command constant. |
static boolean |
DEBUG
whether to show some output. |
private java.util.Hashtable |
listen
listen sockets: SocketAddress -- Socket. |
static int |
PROXY_PORT
default proxy server port. |
private java.net.ServerSocket |
ss
proxy server listen socket. |
Constructor Summary | |
---|---|
ProxyPoint(int port)
Create a new ProxyPoint server object. |
Method Summary | |
---|---|
void |
accept()
Block for and process a single incoming connection. |
private int |
getUnusedPort(java.net.InetAddress addr)
Return an unused proxied port number for given address. |
static void |
main(java.lang.String[] args)
Entry point to start a proxy point server. |
static void |
pumpSocket(java.net.Socket s1,
java.net.Socket s2)
Pump data between two sockets in both directions, and close both if one fails. |
static java.net.InetAddress |
readInetAddress(java.io.ObjectInputStream is)
Read and parse IP address from input stream. |
static void |
setRmiProxy(java.net.InetAddress host,
int port)
Set global RMI proxy factory to proxy sockets to given proxy server. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int PROXY_PORT
public static final byte COMMAND_INVALID
public static final byte COMMAND_NOOP
public static final byte COMMAND_LISTEN
public static final byte COMMAND_CONNECT
public static final byte COMMAND_CONNECTED
public static final boolean DEBUG
private java.net.ServerSocket ss
private java.util.Hashtable listen
Constructor Detail |
---|
public ProxyPoint(int port) throws java.io.IOException
port
- port for incoming connections
java.io.IOException
- when i/o failsMethod Detail |
---|
public static void setRmiProxy(java.net.InetAddress host, int port) throws java.io.IOException
host
- proxy server hostport
- proxy server port
java.io.IOException
- when i/o failspublic static void pumpSocket(java.net.Socket s1, java.net.Socket s2) throws java.io.IOException
s1
- first socket to pumps2
- second socket to pump
java.io.IOException
- when i/o fails (before pumping begins)public static java.net.InetAddress readInetAddress(java.io.ObjectInputStream is) throws java.io.IOException
is
- input stream to read
java.io.IOException
- when i/o failsprivate int getUnusedPort(java.net.InetAddress addr)
addr
- machine requesting unused port
public void accept()
public static void main(java.lang.String[] args)
args
- command-line parameters
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |