mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
remove extra method
This commit is contained in:
parent
343c7615a2
commit
6c6ea6083c
@ -139,15 +139,7 @@ namespace MediaBrowser.Dlna.Ssdp
|
|||||||
values["MX"] = "3";
|
values["MX"] = "3";
|
||||||
|
|
||||||
// UDP is unreliable, so send 3 requests at a time (per Upnp spec, sec 1.1.2)
|
// UDP is unreliable, so send 3 requests at a time (per Upnp spec, sec 1.1.2)
|
||||||
SendDatagram("M-SEARCH * HTTP/1.1", values, localIp, 2);
|
SendDatagram("M-SEARCH * HTTP/1.1", values, _ssdpEndp, localIp, false, 2);
|
||||||
}
|
|
||||||
|
|
||||||
public void SendDatagram(string header,
|
|
||||||
Dictionary<string, string> values,
|
|
||||||
EndPoint localAddress,
|
|
||||||
int sendCount)
|
|
||||||
{
|
|
||||||
SendDatagram(header, values, _ssdpEndp, localAddress, false, sendCount);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendDatagram(string header,
|
public void SendDatagram(string header,
|
||||||
@ -524,7 +516,7 @@ namespace MediaBrowser.Dlna.Ssdp
|
|||||||
_logger.Debug("{0} said {1}", dev.USN, type);
|
_logger.Debug("{0} said {1}", dev.USN, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
SendDatagram(header, values, new IPEndPoint(dev.Address, 0), sendCount);
|
SendDatagram(header, values, _ssdpEndp, new IPEndPoint(dev.Address, 0), false, sendCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RegisterNotification(Guid uuid, Uri descriptionUri, IPAddress address, IEnumerable<string> services)
|
public void RegisterNotification(Guid uuid, Uri descriptionUri, IPAddress address, IEnumerable<string> services)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user