* Fix accidental double-scan from last checkin.

* Add XBox360 compatibility.
This commit is contained in:
Justin Maggard
2009-02-10 07:41:50 +00:00
parent 42be3989bf
commit 0d3505656d
8 changed files with 81 additions and 20 deletions

View File

@ -31,6 +31,10 @@ enum httpCommands {
EUnSubscribe
};
enum clientType {
EXbox = 1
};
struct upnphttp {
int socket;
struct in_addr clientaddr; /* client address */
@ -42,6 +46,7 @@ struct upnphttp {
int req_contentlen;
int req_contentoff; /* header length */
enum httpCommands req_command;
enum clientType req_client;
const char * req_soapAction;
int req_soapActionLen;
#ifdef ENABLE_EVENTS