Program.cs 325 B

123456789101112131415
  1. using System;
  2. namespace NatTypeTester_Console
  3. {
  4. internal static class Program
  5. {
  6. private static void Main(string[] args)
  7. {
  8. var res = Utils.NatTypeTestCore(Utils.DefaultLocalEnd, @"stun.miwifi.com", 3478);
  9. Console.WriteLine(res.Item1);
  10. Console.WriteLine(res.Item2);
  11. Console.WriteLine(res.Item3);
  12. }
  13. }
  14. }