# | Line 8 | Line 8 | using System; | |
---|---|---|
8 | using System.IO; | |
9 | using System.Net; | |
10 | ||
11 | < | namespace DouglasThrift.HostUpdateSharp |
11 | > | public class HostUpdateSharp |
12 | { | |
13 | < | public class HostUpdateSharp |
13 | > | public static void Main(string[] args) |
14 | { | |
15 | < | public static void Main(string[] args) |
16 | < | { |
17 | < | // |
18 | < | } |
15 | > | string host = Dns.GetHostName(); |
16 | > | string url = "http://topsecret.douglasthrift.net/auth/hostupdate.cgi"; |
17 | > | |
18 | > | Console.WriteLine(host + "\n" + url); |
19 | } | |
20 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |