Function

Valentpacket_get_array

unstable since: 1.0

Declaration [src]

gboolean
valent_packet_get_array (
  JsonNode* packet,
  const char* field,
  JsonArray** value
)

Description [src]

Lookup field in the body of packet and assign it to value.

If field is not found or it is not a JsonArray, FALSE will be returned and value will not be set.

Available since: 1.0

Parameters

packet

Type: JsonNode

A KDE Connect packet.

The data is owned by the caller of the function.
field

Type: const char*

Field name.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
value

Type: JsonArray

A JsonArray

The argument will be set by the function.
The argument can be set to NULL by the function.
The caller of the function takes ownership of the data, and is responsible for freeing it.

Return value

Type: gboolean

TRUE, or FALSE on failure.