public RFC3489ViewModel()
 {
     Result3489 = new ClassicStunResult {
         LocalEndPoint = new IPEndPoint(IPAddress.Any, 0)
     };
     TestClassicNatType = ReactiveCommand.CreateFromTask(TestClassicNatTypeImpl);
 }
Esempio n. 2
0
        public RFC3489ViewModel(IScreen hostScreen, Config config)
        {
            HostScreen = hostScreen;
            _config    = config;

            Result3489 = new ClassicStunResult {
                LocalEndPoint = new IPEndPoint(IPAddress.Any, 0)
            };
            TestClassicNatType = ReactiveCommand.CreateFromTask(TestClassicNatTypeImpl);
        }