Ejemplo n.º 1
0
 public void Stop()
 {
     Host.Stop();
     Host = null;
     Settings.IsServer = false;
     Settings.InvokeDisconnection(true);
 }
Ejemplo n.º 2
0
        public bool Connect(string ipAddress = "127.0.0.1", int port = 7788)
        {
            try
            {
                client = new SimpleTcpClient();
                client.DataReceived += Client_DataReceived;
                // client.TcpClient.Client..SetSocketOption(System.Net.Sockets.SocketOptionLevel.Tcp, System.Net.Sockets.SocketOptionName.KeepAlive, true);

                client.Connect(ipAddress, port);

                pingServer = new Thread(new ThreadStart(delegate() {
                    while (true)
                    {
                        Thread.Sleep(25000);
                        if (Settings.IsClient && client.TcpClient.Connected)
                        {
                            Message reply;
                            try
                            {
                                reply = client.WriteLineAndGetReply("#875120", new TimeSpan(0, 0, 0, 15, 0));
                            }
                            catch (Exception)
                            { reply = null; }

                            if (reply == null)
                            {
                                var answer = MessageBox.Show("Kunne ikke få svar fra serveren.\nVil du vente på et svar?", "Timeout", MessageBoxButton.YesNo, MessageBoxImage.Warning);
                                if (answer == MessageBoxResult.No)
                                {
                                    Application.Current.Dispatcher.Invoke(delegate()
                                    {
                                        Console.WriteLine("Disconnect");
                                        CloseConnection();
                                        Settings.InvokeDisconnection(false);
                                    });
                                    break;
                                }
                            }
                        }
                        else
                        {
                            Application.Current.Dispatcher.Invoke(delegate()
                            {
                                Console.WriteLine("Disconnect");
                                CloseConnection();
                                Settings.InvokeDisconnection(false);
                            });
                            break;
                        }
                    }
                }));
                pingServer.Start();

                Settings.IsClient = true;
                Settings.InvokeConnection();
            }
            catch (Exception)
            {
                Settings.IsClient = false;
            }


            return(Settings.IsClient);
        }