Quote:
Originally Posted by Trigorio
Ofc java works with packets. And you will have to pretty much master Sockets in order to make a proxy. How do you suck at Server sockets specifically? There is barley any difference.
On the server side you would listen for a connection, on the client side you would be the one that connects and invokes an event that recieves packets from the target socket.
In order to make a proxy you will have to make a combination of a server and a client. Basicly you both need to recieve and send data between the proxy and a client, and between the proxy and the server.
If you would search for guides on how to create a Messenger in java, then you would very likely work with the serversided part and the clientsided part.
|
Thats exactly where I suck at now :P im programming a chat client first then i'll try to create a proxy, but the thing is i have a sort array (in Java a List, because a List doesnt have to have a predefined maximum number ex. String[] strAr = new String[50]) where i store the sockets in and a infinite loop to receive messages and send these messages to all the sockets (clients) but it doesnt work lol.
PS: I took a look into QOProxy and saw a remote ip, is that the ip of the Conquer server or was that the QOServer?