Constructor
GUPnPContextnew_for_address
since: 1.6.0
Declaration [src]
GUPnPContext*
gupnp_context_new_for_address (
  GInetAddress* addr,
  guint16 port,
  GSSDPUDAVersion uda_version,
  GError** error
)
Description [src]
Creates a GUPnP context with address addr. If none is specified, GUPnP
will chose the address it deems most suitable.
Available since: 1.6.0
Parameters
- addr
- 
            Type: GInetAddressAn IP address or NULLfor auto-detection. If you do not care about the address, but want to specify an address family, use Glib.InetAddress.new_any with the appropriate family instead.The argument can be NULL.The data is owned by the caller of the function. 
- port
- 
            Type: guint16The network port to use for M-SEARCH requests or 0 for random. 
- uda_version
- 
            Type: GSSDPUDAVersionThe UDA version this client will adhere to. 
- error
- 
            Type: GError **The return location for a recoverable error. The argument can be NULL.If the return location is not NULL, then you must initialize it to aNULLGError*.The argument will be left initialized to NULLby the constructor if there are no errors.In case of error, the argument will be set to a newly allocated GError; the caller will take ownership of the data, and be responsible for freeing it.
Return value
Type: GUPnPContext
A new GSSDPClient object or NULL on error.
| The caller of the function takes ownership of the data, and is responsible for freeing it. | 
| The return value can be NULL. |