[TuT][C#]Creating your own proxy - Part 1

01/24/2012 07:23 denominator#16
LMFAO doh@me, it's been a while since I messed about with C#.
02/07/2012 20:55 psych0zius#17
one thing i dont understand is, where exactly do we declare the Port to value 7788?
02/07/2012 21:49 I don't have a username#18
Quote:
Originally Posted by psych0zius View Post
one thing i dont understand is, where exactly do we declare the Port to value 7788?
In the constructor.
Sending Data, last bit.

Code:
        static void Main(string[] args)
        {
            SocketServer server = new SocketServer(7788);
            server.onConnection = new ConnectionEvent(OnConnection);
            server.Listen();
        }