BitServer.Program.Psrv_POP3incomming C# (CSharp) Method

Psrv_POP3incomming() protected static method

protected static Psrv_POP3incomming ( System c ) : void
c System
return void
        protected static void Psrv_POP3incomming(System.Net.Sockets.TcpClient c)
        {
            if (POP3 == null)
            {
                P3S = new POP3state();
                P3S.passOK = P3S.userOK = false;
                POP3 = new POP3connection(c);
                POP3.POP3command += new POP3commandHandler(POP3_POP3command);
                POP3.POP3dropped += new POP3droppedHandler(POP3_POP3dropped);
                POP3.ok("WAKE UP BITCH! I'M READY TO KICK ASS, AND IT BETTER BE IMPORTANT");
            }
            else
            {
                new POP3connection(c).err("Try again later you fool!", true);
            }
        }