tracking codes

Monday, March 11, 2013

The Secret of


  1. credit kay sadpart

    private void combo_protocol_SelectedIndexChanged(object sender, EventArgs e)
  2. {
  3.    if (Operators.CompareString(this.combo_protocol.Text, "UDP ", false) == 0)
  4.    {
  5.        this.string_7 = "udp ";
  6.    }
  7.    else
  8.    {
  9.        if (Operators.CompareString(this.combo_network.Text, "SMART", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  10.        {
  11.            this.string_7 = "udp ";
  12.            this.combo_lport.Text = "53";
  13.            this.combo_rport.Text = "80";
  14.            this.txt_proxy.Text = "";
  15.            this.txt_proxyport.Text = "";
  16.        }
  17.        else
  18.        {
  19.            if (Operators.CompareString(this.combo_network.Text, "SMART", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  20.            {
  21.                this.string_7 = "tcp ";
  22.                this.combo_lport.Text = "9666";
  23.                this.combo_rport.Text = "443";
  24.                this.txt_proxy.Text = "10.102.61.46";
  25.                this.txt_proxyport.Text = "8080";
  26.                this.string_10 = string.Concat(new string[]
  27.                {
  28.                    "--http-proxy-retry 5 --http-proxy ",
  29.                    this.txt_proxy.Text,
  30.                    " ",
  31.                    this.txt_proxyport.Text,
  32.                    " "
  33.                });
  34.            }
  35.        }
  36.    }
  37.    if (Operators.CompareString(this.combo_network.Text, "GLOBE", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  38.    {
  39.        this.string_7 = "udp ";
  40.        this.combo_lport.Text = "52";
  41.        this.combo_rport.Text = "9201";
  42.        this.txt_proxy.Text = "";
  43.        this.txt_proxyport.Text = "";
  44.    }
  45.    else
  46.    {
  47.        if (Operators.CompareString(this.combo_network.Text, "GLOBE", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  48.        {
  49.            this.string_7 = "tcp ";
  50.            this.combo_lport.Text = "153";
  51.            this.combo_rport.Text = "8080";
  52.            this.txt_proxy.Text = "";
  53.            this.txt_proxyport.Text = "";
  54.            this.string_10 = "";
  55.        }
  56.    }
  57.    if (Operators.CompareString(this.combo_network.Text, "SUN", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  58.    {
  59.        this.string_7 = "udp ";
  60.        this.combo_lport.Text = "53";
  61.        this.combo_rport.Text = "9200";
  62.        this.txt_proxy.Text = "";
  63.        this.txt_proxyport.Text = "";
  64.    }
  65.    else
  66.    {
  67.        if (Operators.CompareString(this.combo_network.Text, "SUN", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  68.        {
  69.            this.string_7 = "tcp ";
  70.            this.combo_lport.Text = "80";
  71.            this.combo_rport.Text = "443";
  72.            this.txt_proxy.Text = "";
  73.            this.txt_proxyport.Text = "";
  74.            this.string_10 = string.Concat(new string[]
  75.            {
  76.                "--http-proxy-retry 5 --http-proxy ",
  77.                this.txt_proxy.Text,
  78.                " ",
  79.                this.txt_proxyport.Text,
  80.                " "
  81.            });
  82.            this.string_10 = "";
  83.        }
  84.    }
  85. }

No comments:

Post a Comment