Get rid of evil CLIENTONLY macro.
This commit is contained in:
parent
2dad42679d
commit
b37f9ac64a
@ -331,13 +331,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef INCLUDE_CLIENT_APIS
|
|
||||||
# define CLIENTONLY(x) x
|
|
||||||
#else
|
|
||||||
# define CLIENTONLY(x)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//@}
|
//@}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -779,8 +779,10 @@ int UpnpRegisterRootDevice(
|
|||||||
HInfo->DeviceList = NULL;
|
HInfo->DeviceList = NULL;
|
||||||
HInfo->ServiceList = NULL;
|
HInfo->ServiceList = NULL;
|
||||||
HInfo->DescDocument = NULL;
|
HInfo->DescDocument = NULL;
|
||||||
CLIENTONLY( ListInit(&HInfo->SsdpSearchList, NULL, NULL); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
CLIENTONLY( HInfo->ClientSubList = NULL; )
|
ListInit(&HInfo->SsdpSearchList, NULL, NULL);
|
||||||
|
HInfo->ClientSubList = NULL;
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
||||||
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
||||||
HInfo->DeviceAf = AF_INET;
|
HInfo->DeviceAf = AF_INET;
|
||||||
@ -790,7 +792,9 @@ int UpnpRegisterRootDevice(
|
|||||||
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
||||||
"UpnpRegisterRootDevice: error downloading Document: %d\n",
|
"UpnpRegisterRootDevice: error downloading Document: %d\n",
|
||||||
retVal);
|
retVal);
|
||||||
CLIENTONLY( ListDestroy(&HInfo->SsdpSearchList, 0); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy(&HInfo->SsdpSearchList, 0);
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
FreeHandle(*Hnd);
|
FreeHandle(*Hnd);
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
@ -802,7 +806,9 @@ int UpnpRegisterRootDevice(
|
|||||||
HInfo->DeviceList =
|
HInfo->DeviceList =
|
||||||
ixmlDocument_getElementsByTagName(HInfo->DescDocument, "device");
|
ixmlDocument_getElementsByTagName(HInfo->DescDocument, "device");
|
||||||
if (!HInfo->DeviceList) {
|
if (!HInfo->DeviceList) {
|
||||||
CLIENTONLY( ListDestroy(&HInfo->SsdpSearchList, 0); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy(&HInfo->SsdpSearchList, 0);
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
ixmlDocument_free(HInfo->DescDocument);
|
ixmlDocument_free(HInfo->DescDocument);
|
||||||
FreeHandle(*Hnd);
|
FreeHandle(*Hnd);
|
||||||
UpnpPrintf(UPNP_CRITICAL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_CRITICAL, API, __FILE__, __LINE__,
|
||||||
@ -938,8 +944,10 @@ int UpnpRegisterRootDevice2(
|
|||||||
HInfo->MaxAge = DEFAULT_MAXAGE;
|
HInfo->MaxAge = DEFAULT_MAXAGE;
|
||||||
HInfo->DeviceList = NULL;
|
HInfo->DeviceList = NULL;
|
||||||
HInfo->ServiceList = NULL;
|
HInfo->ServiceList = NULL;
|
||||||
CLIENTONLY( ListInit(&HInfo->SsdpSearchList, NULL, NULL); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
CLIENTONLY( HInfo->ClientSubList = NULL; )
|
ListInit(&HInfo->SsdpSearchList, NULL, NULL);
|
||||||
|
HInfo->ClientSubList = NULL;
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
||||||
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
||||||
HInfo->DeviceAf = AF_INET;
|
HInfo->DeviceAf = AF_INET;
|
||||||
@ -952,7 +960,9 @@ int UpnpRegisterRootDevice2(
|
|||||||
HInfo->DeviceList =
|
HInfo->DeviceList =
|
||||||
ixmlDocument_getElementsByTagName( HInfo->DescDocument, "device" );
|
ixmlDocument_getElementsByTagName( HInfo->DescDocument, "device" );
|
||||||
if (!HInfo->DeviceList) {
|
if (!HInfo->DeviceList) {
|
||||||
CLIENTONLY( ListDestroy(&HInfo->SsdpSearchList, 0); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy(&HInfo->SsdpSearchList, 0);
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
ixmlDocument_free(HInfo->DescDocument);
|
ixmlDocument_free(HInfo->DescDocument);
|
||||||
FreeHandle(*Hnd);
|
FreeHandle(*Hnd);
|
||||||
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
||||||
@ -1013,16 +1023,15 @@ int UpnpRegisterRootDevice3(
|
|||||||
int retVal = 0;
|
int retVal = 0;
|
||||||
int hasServiceTable = 0;
|
int hasServiceTable = 0;
|
||||||
int handler_index = 0;
|
int handler_index = 0;
|
||||||
|
|
||||||
HandleLock();
|
HandleLock();
|
||||||
|
|
||||||
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
||||||
"Inside UpnpRegisterRootDevice3\n");
|
"Inside UpnpRegisterRootDevice3\n");
|
||||||
|
|
||||||
if (UpnpSdkInit != 1) {
|
if (UpnpSdkInit != 1) {
|
||||||
retVal = UPNP_E_FINISH;
|
retVal = UPNP_E_FINISH;
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Hnd == NULL ||
|
if (Hnd == NULL ||
|
||||||
Fun == NULL ||
|
Fun == NULL ||
|
||||||
DescUrl == NULL ||
|
DescUrl == NULL ||
|
||||||
@ -1031,17 +1040,14 @@ int UpnpRegisterRootDevice3(
|
|||||||
retVal = UPNP_E_INVALID_PARAM;
|
retVal = UPNP_E_INVALID_PARAM;
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Test for already regsitered IPV4. */
|
/* Test for already regsitered IPV4. */
|
||||||
if (AddressFamily == AF_INET && UpnpSdkDeviceRegisteredV4 == 1) {
|
if (AddressFamily == AF_INET && UpnpSdkDeviceRegisteredV4 == 1) {
|
||||||
retVal = UPNP_E_ALREADY_REGISTERED;
|
retVal = UPNP_E_ALREADY_REGISTERED;
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Test for already registered IPV6. IPV6 devices might register on multiple
|
/* Test for already registered IPV6. IPV6 devices might register on multiple
|
||||||
* IPv6 addresses (link local and GUA or ULA), so we must to check the
|
* IPv6 addresses (link local and GUA or ULA), so we must to check the
|
||||||
* description URL in the HandleTable. */
|
* description URL in the HandleTable. */
|
||||||
|
|
||||||
while (handler_index < NUM_HANDLE && HandleTable[handler_index] != NULL) {
|
while (handler_index < NUM_HANDLE && HandleTable[handler_index] != NULL) {
|
||||||
if (strcmp(((struct Handle_Info *)HandleTable[handler_index])->DescURL, DescUrl)) {
|
if (strcmp(((struct Handle_Info *)HandleTable[handler_index])->DescURL, DescUrl)) {
|
||||||
retVal = UPNP_E_ALREADY_REGISTERED;
|
retVal = UPNP_E_ALREADY_REGISTERED;
|
||||||
@ -1049,13 +1055,11 @@ int UpnpRegisterRootDevice3(
|
|||||||
}
|
}
|
||||||
handler_index++;
|
handler_index++;
|
||||||
}
|
}
|
||||||
|
|
||||||
*Hnd = GetFreeHandle();
|
*Hnd = GetFreeHandle();
|
||||||
if (*Hnd == UPNP_E_OUTOF_HANDLE) {
|
if (*Hnd == UPNP_E_OUTOF_HANDLE) {
|
||||||
retVal = UPNP_E_OUTOF_MEMORY;
|
retVal = UPNP_E_OUTOF_MEMORY;
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
|
|
||||||
HInfo = (struct Handle_Info *)malloc(sizeof (struct Handle_Info));
|
HInfo = (struct Handle_Info *)malloc(sizeof (struct Handle_Info));
|
||||||
if (HInfo == NULL) {
|
if (HInfo == NULL) {
|
||||||
retVal = UPNP_E_OUTOF_MEMORY;
|
retVal = UPNP_E_OUTOF_MEMORY;
|
||||||
@ -1064,7 +1068,6 @@ int UpnpRegisterRootDevice3(
|
|||||||
HandleTable[*Hnd] = HInfo;
|
HandleTable[*Hnd] = HInfo;
|
||||||
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_ALL, API, __FILE__, __LINE__,
|
||||||
"Root device URL is %s\n", DescUrl);
|
"Root device URL is %s\n", DescUrl);
|
||||||
|
|
||||||
HInfo->aliasInstalled = 0;
|
HInfo->aliasInstalled = 0;
|
||||||
HInfo->HType = HND_DEVICE;
|
HInfo->HType = HND_DEVICE;
|
||||||
strcpy(HInfo->DescURL, DescUrl);
|
strcpy(HInfo->DescURL, DescUrl);
|
||||||
@ -1074,15 +1077,18 @@ int UpnpRegisterRootDevice3(
|
|||||||
HInfo->DeviceList = NULL;
|
HInfo->DeviceList = NULL;
|
||||||
HInfo->ServiceList = NULL;
|
HInfo->ServiceList = NULL;
|
||||||
HInfo->DescDocument = NULL;
|
HInfo->DescDocument = NULL;
|
||||||
CLIENTONLY( ListInit(&HInfo->SsdpSearchList, NULL, NULL); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
CLIENTONLY( HInfo->ClientSubList = NULL; )
|
ListInit(&HInfo->SsdpSearchList, NULL, NULL);
|
||||||
|
HInfo->ClientSubList = NULL;
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
HInfo->MaxSubscriptions = UPNP_INFINITE;
|
||||||
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
HInfo->MaxSubscriptionTimeOut = UPNP_INFINITE;
|
||||||
HInfo->DeviceAf = AddressFamily;
|
HInfo->DeviceAf = AddressFamily;
|
||||||
|
|
||||||
retVal = UpnpDownloadXmlDoc(HInfo->DescURL, &(HInfo->DescDocument));
|
retVal = UpnpDownloadXmlDoc(HInfo->DescURL, &(HInfo->DescDocument));
|
||||||
if (retVal != UPNP_E_SUCCESS) {
|
if (retVal != UPNP_E_SUCCESS) {
|
||||||
CLIENTONLY( ListDestroy(&HInfo->SsdpSearchList, 0); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy(&HInfo->SsdpSearchList, 0);
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
FreeHandle(*Hnd);
|
FreeHandle(*Hnd);
|
||||||
goto exit_function;
|
goto exit_function;
|
||||||
}
|
}
|
||||||
@ -1094,7 +1100,9 @@ int UpnpRegisterRootDevice3(
|
|||||||
HInfo->DeviceList = ixmlDocument_getElementsByTagName(
|
HInfo->DeviceList = ixmlDocument_getElementsByTagName(
|
||||||
HInfo->DescDocument, "device");
|
HInfo->DescDocument, "device");
|
||||||
if (!HInfo->DeviceList) {
|
if (!HInfo->DeviceList) {
|
||||||
CLIENTONLY( ListDestroy(&HInfo->SsdpSearchList, 0); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy(&HInfo->SsdpSearchList, 0);
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
ixmlDocument_free(HInfo->DescDocument);
|
ixmlDocument_free(HInfo->DescDocument);
|
||||||
FreeHandle(*Hnd);
|
FreeHandle(*Hnd);
|
||||||
UpnpPrintf(UPNP_CRITICAL, API, __FILE__, __LINE__,
|
UpnpPrintf(UPNP_CRITICAL, API, __FILE__, __LINE__,
|
||||||
@ -1186,7 +1194,9 @@ int UpnpUnRegisterRootDevice(UpnpDevice_Handle Hnd)
|
|||||||
ixmlNodeList_free( HInfo->ServiceList );
|
ixmlNodeList_free( HInfo->ServiceList );
|
||||||
ixmlDocument_free( HInfo->DescDocument );
|
ixmlDocument_free( HInfo->DescDocument );
|
||||||
|
|
||||||
CLIENTONLY( ListDestroy( &HInfo->SsdpSearchList, 0 ); )
|
#ifdef INCLUDE_CLIENT_APIS
|
||||||
|
ListDestroy( &HInfo->SsdpSearchList, 0 );
|
||||||
|
#endif /* INCLUDE_CLIENT_APIS */
|
||||||
|
|
||||||
#ifdef INTERNAL_WEB_SERVER
|
#ifdef INTERNAL_WEB_SERVER
|
||||||
if( HInfo->aliasInstalled ) {
|
if( HInfo->aliasInstalled ) {
|
||||||
|
@ -331,13 +331,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef INCLUDE_CLIENT_APIS
|
|
||||||
# define CLIENTONLY(x) x
|
|
||||||
#else
|
|
||||||
# define CLIENTONLY(x)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//@}
|
//@}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -430,7 +430,6 @@ void CreateServicePacket(
|
|||||||
}
|
}
|
||||||
/* NOTE: The CACHE-CONTROL and LOCATION headers are not present in
|
/* NOTE: The CACHE-CONTROL and LOCATION headers are not present in
|
||||||
* a shutdown msg, but are present here for MS WinMe interop. */
|
* a shutdown msg, but are present here for MS WinMe interop. */
|
||||||
|
|
||||||
if (AddressFamily == AF_INET) {
|
if (AddressFamily == AF_INET) {
|
||||||
host = SSDP_IP;
|
host = SSDP_IP;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user