diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2021-06-02 22:07:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-02 22:07:58 -0400 |
| commit | b060d9d0f1b3dac523288a3aaf182f7e35cf875c (patch) | |
| tree | 8d969c43285e85187f342ec8d14d1b25225edb1d /Emby.Server.Implementations/EntryPoints | |
| parent | 1e1e9dbb587c35acd17a81117114b356d5dcc8a1 (diff) | |
| parent | 40a43f9485bef407dfdf78ac6dfabcac6d031349 (diff) | |
Merge pull request #6131 from BaronGreenback/Fix_NetworkFlooding
Fix network flooding issue
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints')
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs b/Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs index cc3e4a2c2..0a4efd73c 100644 --- a/Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs +++ b/Emby.Server.Implementations/EntryPoints/ExternalPortForwarding.cs @@ -108,8 +108,6 @@ namespace Emby.Server.Implementations.EntryPoints NatUtility.StartDiscovery(); _timer = new Timer((_) => _createdRules.Clear(), null, TimeSpan.FromMinutes(10), TimeSpan.FromMinutes(10)); - - _deviceDiscovery.DeviceDiscovered += OnDeviceDiscoveryDeviceDiscovered; } private void Stop() @@ -120,13 +118,6 @@ namespace Emby.Server.Implementations.EntryPoints NatUtility.DeviceFound -= OnNatUtilityDeviceFound; _timer?.Dispose(); - - _deviceDiscovery.DeviceDiscovered -= OnDeviceDiscoveryDeviceDiscovered; - } - - private void OnDeviceDiscoveryDeviceDiscovered(object sender, GenericEventArgs<UpnpDeviceInfo> e) - { - NatUtility.Search(e.Argument.LocalIpAddress, NatProtocol.Upnp); } private async void OnNatUtilityDeviceFound(object sender, DeviceEventArgs e) |
