BitServer.Program.Ssrv_SMTPincomming C# (CSharp) Method

Ssrv_SMTPincomming() protected static method

protected static Ssrv_SMTPincomming ( System c ) : void
c System
return void
        protected static void Ssrv_SMTPincomming(System.Net.Sockets.TcpClient c)
        {
            if (SMTP == null)
            {
                myAddr = Bitmessage.getAddresses(BitAPIserver.BA);
                SMS = new SMTPstate();
                SMTP = new SMTPconnection(c);
                SMTP.SMTPcommand += new SMTPcommandHandler(SMTP_SMTPcommand);
                SMTP.SMTPdropped += new SMTPdroppedHandler(SMTP_SMTPdropped);
                SMTP.msg(220,"WAKE UP BITCH! I'M READY TO KICK ASS, AND IT BETTER BE IMPORTANT");
            }
            else
            {
                SMTPconnection temp = new SMTPconnection(c);
                temp.msg(421, "Try again later you fool!");
                temp.close();
            }
        }