linq_network_destroy

Synopsis

void linq_network_destroy(linq_network_s**);

Free the LinQ Network communication library resource from heap memory.

Warning

This will shutdown all connections to remote devices.

Parameters

Parameter Description
linq_network** Pointer to the linq_network_s context (returned from linq_network_create)

Example

linq_network *netw = linq_network_create(NULL, NULL);

// Do some stuff
// ...

linq_network_destroy(&netw);

See Also

linq_network_create