diff options
-rw-r--r-- | AirPlayService.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/AirPlayService.py b/AirPlayService.py index 925b4e0..5525712 100644 --- a/AirPlayService.py +++ b/AirPlayService.py @@ -155,6 +155,12 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send): def set_scrub(self, position): return False + def server_info(self): + return False + + def playback_info(self): + return False + def play(self, location, position): return False @@ -164,6 +170,9 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send): def reverse(self, info): return True + def slideshow_features(self): + return False + def photo(self, data, transition): return False |