This is not inspected by HRTunerProxy, resulting in the plugin not finding the boxes IP because the inspected interface names are hard-coded:
plugin/__init__.py
def getIfInfo():
for port in ('eth0', 'eth1', 'wlan0', 'wlan1', 'wlan2', 'wlan3', 'ra0'):
ifinfo = getIfConfig(port)
if 'addr' in ifinfo:
return ifinfo
return None
def getIP():
IP = '0.0.0.0'
ifinfo = getIfInfo()
if ifinfo:
IP = ifinfo['addr']
return '%s' % IP
I have not found a means of configuring additional interface - can this be done?
Is is possible to install the src package and modify the code on the dm8 for dynamic re-compile?
Hi - just trying out this great looking plugin on dm8000 for use with emby.
My dm is setup for use on a vlan, and while eth0 is the physical device, it's IP is set up on vlan device eth0.2
This is not inspected by HRTunerProxy, resulting in the plugin not finding the boxes IP because the inspected interface names are hard-coded:
plugin/__init__.py
I have not found a means of configuring additional interface - can this be done?
Is is possible to install the src package and modify the code on the dm8 for dynamic re-compile?