add WebSocket for events and remote control

For some reason playback stop is not being reported
This commit is contained in:
faush01 2015-03-23 15:54:16 +11:00
parent 59cdfcd922
commit 9e5385c1c6
5 changed files with 398 additions and 2 deletions

View file

@ -55,7 +55,8 @@ class DownloadUtils():
host = addon.getSetting('ipaddress')
port = addon.getSetting('port')
server = host + ":" + port
return server
'''
if len(server) < 2:
self.logMsg("No server information saved.")
return ""
@ -71,7 +72,7 @@ class DownloadUtils():
# If only the host:port is required
elif (prefix == False):
return server
'''
def getUserId(self, suppress=True):
WINDOW = xbmcgui.Window( 10000 )