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): | |||
| 155 | def set_scrub(self, position): | 155 | def set_scrub(self, position): |
| 156 | return False | 156 | return False |
| 157 | 157 | ||
| 158 | def server_info(self): | ||
| 159 | return False | ||
| 160 | |||
| 161 | def playback_info(self): | ||
| 162 | return False | ||
| 163 | |||
| 158 | def play(self, location, position): | 164 | def play(self, location, position): |
| 159 | return False | 165 | return False |
| 160 | 166 | ||
| @@ -164,6 +170,9 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send): | |||
| 164 | def reverse(self, info): | 170 | def reverse(self, info): |
| 165 | return True | 171 | return True |
| 166 | 172 | ||
| 173 | def slideshow_features(self): | ||
| 174 | return False | ||
| 175 | |||
| 167 | def photo(self, data, transition): | 176 | def photo(self, data, transition): |
| 168 | return False | 177 | return False |
| 169 | 178 | ||
