2017-01-03, 09:20 AM
if you need some tests... say it :-)
2017-01-03, 09:20 AM
if you need some tests... say it :-)
2017-01-03, 01:33 PM
Schimi can you install NPvr run it goto Settings DevicePage and wait 30 sec afterthat Need i the log file from C:\Users\Public\NPVR\Logs\NPvr.log
had there multible paths where the Problem can be
2017-01-03, 08:10 PM
here is it :-)
2017-01-03, 09:09 PM
(This post was last modified: 2017-01-03, 09:16 PM by KayDiefenthal.)
Thanx Schimi that you us helping here
@Sub Looks like that SSDPListener had not enough time or wrong address you configure the socket so this.UdpSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1); this.ipe = new IPEndPoint(IPAddress.Broadcast, 0x76c); the port 1900 is the right but the Ip /Address not! Broadcast is 255.255.255.255 but it must be 239.255.255.250 Need a change to IPEndPoint LocalEndPoint = new IPEndPoint(IPAddress.Any, 0); IPEndPoint MulticastEndPoint = new IPEndPoint(IPAddress.Parse("239.255.255.250"), 1900); Socket UdpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); UdpSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); UdpSocket.Bind(LocalEndPoint); UdpSocket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, new MulticastOption(MulticastEndPoint.Address, IPAddress.Any)); UdpSocket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastTimeToLive, 2); UdpSocket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.MulticastLoopback, true); and is terminate after 15000 milisec can you both change or should i create an patch or custom solution for more testing ?
2017-01-03, 09:18 PM
I can bump the timeout up from 15000ms to something bigger.
"IPEndPoint(IPAddress.Broadcast, 1900)" has been working fine for other SAT>IP devices. Why would it be any different for his?
2017-01-03, 09:23 PM
sure some Sat>Ip devices answer to this but here is one not found and i try to help to analyser where here the problem is
and in Schimis Log is no entry for ssdp got data <see ref SSDPListener.cs> CheckForResponses and that can at time only address or timeout
2017-01-03, 09:33 PM
Schimi, see if this patch helps.
2017-01-04, 08:43 AM
if i open the device page an error is happen now
Code: Informationen über das Aufrufen von JIT-Debuggen
2017-01-04, 09:49 AM
ipe in send is not set
ipe = new IPEndPoint(IPAddress.Parse("239.255.255.250"), 0x76c);
2017-01-04, 01:10 PM
KayDiefenthal Wrote:ipe in send is not set I think that is because in your recommended source earlier your change to MulticastEndPoint should have stayed as this.ipe. Martin |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Experience / Guide Elgato EyeTV Netstream 4C SAT>IP tuner | Bread | 2 | 2,944 |
2019-04-27, 08:56 PM Last Post: sub |
|
Elgato eyetv freesat channels | Randy_69 | 15 | 4,732 |
2016-09-19, 04:07 PM Last Post: Randy_69 |
|
Elgato EyeTv Hybrid | Xorfora | 20 | 6,833 |
2013-09-10, 02:53 AM Last Post: Xorfora |