Constructor

GSSDPClientnew_full

Declaration [src]

GSSDPClient*
gssdp_client_new_full (
  const char* iface,
  GInetAddress* addr,
  guint16 port,
  GSSDPUDAVersion uda_version,
  GError** error
)

Description [src]

Creates a GSSDP client with address addr. If none is specified, GSSDP will chose the address it deems most suitable.

Available since:1.6.

Parameters

iface const char*
 

The name of a network interface.

 The argument can be NULL.
 The data is owned by the caller of the function.
 The value is a NUL terminated UTF-8 string.
addr GInetAddress
 

An IP address or NULL for 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 guint16
 

The network port to use for M-SEARCH requests or 0 for random.

uda_version GSSDPUDAVersion
 

The UDA version this client will adhere to.

error GError **
  The return location for a GError*, or NULL.

Return value

Returns: GSSDPClient
 

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.