7 |
|
using System; |
8 |
|
using System.IO; |
9 |
|
using System.Net; |
10 |
+ |
using System.Text; |
11 |
|
|
12 |
< |
namespace DouglasThrift.HostUpdateSharp |
12 |
> |
public class HostUpdateSharp |
13 |
|
{ |
14 |
< |
public class HostUpdateSharp |
14 |
> |
public static void Main(string[] args) |
15 |
|
{ |
16 |
< |
public static void Main(string[] args) |
16 |
> |
#if !_FreeBSD_ |
17 |
> |
String os = "FreeBSD"; |
18 |
> |
#else |
19 |
> |
OperatingSystem os = Environment.OSVersion; |
20 |
> |
#endif |
21 |
> |
StringBuilder host = new StringBuilder("host=" + Dns.GetHostName()); |
22 |
> |
string url = "http://topsecret.douglasthrift.net/auth/hostupdate.cgi"; |
23 |
> |
|
24 |
> |
if (host.ToString().IndexOf('.') < 0) |
25 |
|
{ |
26 |
< |
// |
26 |
> |
host.Append(".local.douglasthrift.net"); |
27 |
|
} |
28 |
+ |
|
29 |
+ |
Console.WriteLine(host); |
30 |
+ |
|
31 |
+ |
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); |
32 |
+ |
|
33 |
+ |
request.Accept = "text/plain"; |
34 |
+ |
request.ContentLength = host.Length; |
35 |
+ |
request.ContentType = "application/x-www-form-urlencoded"; |
36 |
+ |
request.Credentials = new NetworkCredential("HostUpdate", "frell2003"); |
37 |
+ |
request.KeepAlive = false; |
38 |
+ |
request.Method = "POST"; |
39 |
+ |
request.PreAuthenticate = true; |
40 |
+ |
request.UserAgent = "Host Update Sharp/1.0 (" + os + ")"; |
41 |
|
} |
42 |
|
} |