From 9d466e4852da547d2da83486c051af61eecd12ad Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 7 Apr 2011 15:12:37 +0200 Subject: Define server_info, playback_info and slideshow_features requests of iOS 4.3+ --- AirPlayService.py | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -- cgit v1.1-32-gdbae