From a348356b9d7bc856465431965509cae99231809b Mon Sep 17 00:00:00 2001
From: Martin Szulecki
Date: Thu, 7 Apr 2011 15:16:39 +0200
Subject: Return 404 for new slideshow-features request of iOS 4.3

---
 AirPlayService.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/AirPlayService.py b/AirPlayService.py
index be3eeb0..394c434 100644
--- a/AirPlayService.py
+++ b/AirPlayService.py
@@ -119,6 +119,8 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send):
 		elif (request.type == 'PUT' and request.uri.find('/photo')>-1):
 			self.photo(request.body, request.headers['X-Apple-Transition'])
 			answer = self.create_request()
+		elif (request.uri.find('/slideshow-features')>-1):
+			answer = self.create_request(404)
 		elif (request.type == 'GET' and request.uri.find('/server-info')>-1):
 			self.server_info()
 			content = '<?xml version="1.0" encoding="UTF-8"?>\
-- 
cgit v1.1-32-gdbae