diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-24 11:48:06 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-08-24 11:48:06 -0400 |
| commit | 58a38d0d1ddb89439b763e7bc50e8b84105f68fe (patch) | |
| tree | 3500fb6b08bab5549219b6bf32f10e9f1e9a01e5 /MediaBrowser.ServerApplication/EntryPoints | |
| parent | e4edbfdfd66797ce3aa52bdcfcf4ce8a9f1c5745 (diff) | |
update translations
Diffstat (limited to 'MediaBrowser.ServerApplication/EntryPoints')
| -rw-r--r-- | MediaBrowser.ServerApplication/EntryPoints/WanAddressEntryPoint.cs | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/MediaBrowser.ServerApplication/EntryPoints/WanAddressEntryPoint.cs b/MediaBrowser.ServerApplication/EntryPoints/WanAddressEntryPoint.cs deleted file mode 100644 index 7b2a1314e0..0000000000 --- a/MediaBrowser.ServerApplication/EntryPoints/WanAddressEntryPoint.cs +++ /dev/null @@ -1,55 +0,0 @@ -using MediaBrowser.Common.Net; -using MediaBrowser.Controller.Plugins; -using System; -using System.IO; -using System.Threading; - -namespace MediaBrowser.ServerApplication.EntryPoints -{ - public class WanAddressEntryPoint : IServerEntryPoint - { - public static string WanAddress; - private Timer _timer; - private readonly IHttpClient _httpClient; - - public WanAddressEntryPoint(IHttpClient httpClient) - { - _httpClient = httpClient; - } - - public void Run() - { - _timer = new Timer(TimerCallback, null, TimeSpan.FromMinutes(1), TimeSpan.FromHours(24)); - } - - private async void TimerCallback(object state) - { - try - { - using (var stream = await _httpClient.Get(new HttpRequestOptions - { - Url = "http://bot.whatismyipaddress.com/" - - }).ConfigureAwait(false)) - { - using (var reader = new StreamReader(stream)) - { - WanAddress = await reader.ReadToEndAsync().ConfigureAwait(false); - } - } - } - catch - { - } - } - - public void Dispose() - { - if (_timer != null) - { - _timer.Dispose(); - _timer = null; - } - } - } -} |
