Example #1
0
 private void Form1_FormClosing(object sender, FormClosingEventArgs e)
 {
     RedirectorServer.Stop();
     BlazeServer.Stop();
     MagmaServer.Stop();
     Webserver.Stop();
 }
Example #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            checkBox1.Enabled           =
                checkBox2.Enabled       =
                    checkBox3.Enabled   =
                        button6.Enabled = false;
            BackendLog.Clear();
            string globalip = textBox1.Text;

            ProviderInfo.backendIP  = textBox1.Text;
            RedirectorServer.useSSL = checkBox1.Checked;
            if (!checkBox2.Checked)
            {
                RedirectorServer.targetPort = 30001;
            }
            MagmaServer.basicMode = true;
            RichTextBox rtb1 = null;

            RedirectorServer.box        =
                BlazeServer.box         =
                    Webserver.box       =
                        MagmaServer.box = rtb1;
            RedirectorServer.Start();
            BlazeServer.Start();
            MagmaServer.Start();
            if (checkBox3.Checked)
            {
                Webserver.Start();
            }
        }
Example #3
0
 private void Form2_FormClosing(object sender, FormClosingEventArgs e)
 {
     RedirectorServer.Stop();
     BlazeServer.Stop();
     MagmaServer.Stop();
     if (checkBox3.Checked)
     {
         Webserver.Stop();
     }
 }
Example #4
0
 private void Start()
 {
     BackendLog.Clear();
     ProviderInfo.backendIP  = toolStripTextBox3.Text;
     RedirectorServer.box    =
         BlazeServer.box     = rtb2;
     Webserver.box           = rtb5;
     MagmaServer.box         = rtb4;
     RedirectorServer.useSSL = checkBox1.Checked;
     RedirectorServer.Start();
     BlazeServer.Start();
     MagmaServer.Start();
     Webserver.Start();
 }