Exemplo n.º 1
0
        public override int open()
        {
            // Open the TCP port in the router
            proOnline.sceNetPortOpen(socketProtocol, Port);

            // This is a normal socket, no server socket
            isServerSocket = false;

            return(base.open());
        }
Exemplo n.º 2
0
        public override void create()
        {
            // Open the UDP port in the router
            proOnline.sceNetPortOpen("UDP", Port);

            base.create();
        }
Exemplo n.º 3
0
        public override int create(pspNetMacAddress macAddress, int port, int bufSize)
        {
            // Open the UDP port in the router
            proOnline.sceNetPortOpen(socketProtocol, port);

            return(base.create(macAddress, port, bufSize));
        }