libUPnP
1.14.22
|
Go to the source code of this file.
Functions | |
UPNP_EXPORT_SPEC void | UpnpSetMaxJobsTotal (int mjt) |
Sets the maximum number of jobs in the internal thread pool. This option is intended for server applications to avoid an overflow of jobs when serving e.g. many web requests. More... | |
UPNP_EXPORT_SPEC const char * | UpnpGetErrorMessage (int errorcode) |
Converts an SDK error code into a string error message suitable for display. The memory returned from this function should NOT be freed. More... | |
UPNP_EXPORT_SPEC int | UpnpResolveURL (const char *BaseURL, const char *RelURL, char *AbsURL) |
Combines a base URL and a relative URL into a single absolute URL. More... | |
UPNP_EXPORT_SPEC int | UpnpResolveURL2 (const char *BaseURL, const char *RelURL, char **AbsURL) |
Combines a base URL and a relative URL into a single absolute URL. More... | |
UPNP_EXPORT_SPEC IXML_Document * | UpnpMakeAction (const char *ActionName, const char *ServType, int NumArg, const char *Arg,...) |
Creates an action request packet based on its input parameters (status variable name and value pair). More... | |
UPNP_EXPORT_SPEC IXML_Document * | UpnpMakeActionResponse (const char *ActionName, const char *ServType, int NumArg, const char *Arg,...) |
Ceates an action response packet based on its output parameters (status variable name and value pair). More... | |
UPNP_EXPORT_SPEC int | UpnpAddToAction (IXML_Document **ActionDoc, const char *ActionName, const char *ServType, const char *ArgName, const char *ArgVal) |
Adds the argument in the action request. More... | |
UPNP_EXPORT_SPEC int | UpnpAddToActionResponse (IXML_Document **ActionResponse, const char *ActionName, const char *ServType, const char *ArgName, const char *ArgVal) |
Creates an action response packet based on its output parameters (status variable name and value pair). More... | |
UPNP_EXPORT_SPEC IXML_Document * | UpnpCreatePropertySet (int NumArg, const char *Arg,...) |
Creates a property set message packet. More... | |
UPNP_EXPORT_SPEC int | UpnpAddToPropertySet (IXML_Document **PropSet, const char *ArgName, const char *ArgVal) |
Can be used when an application needs to transfer the status of many variables at once. More... | |