iscsi_nodes_get - Retrieve all iSCSI nodes.
Contents
Arguments
ctx Pointer of 'struct iscsi_context'. If this pointer is NULL, your program will be terminated
by assert.
nodes Output pointer of 'struct iscsi_node' pointer array. Its memory should be freed by
iscsi_nodes_free. If this pointer is NULL, your program will be terminated by assert.
node_count Output pointer of uint32_t. Will store the size of
Description
Retrieves all iSCSI nodes. For the properties of 'struct iscsi_node', please refer to the functions
defined in 'libopeniscsiusr_node.h' file. The returned results contains iSCSI nodes configured in
"/etc/iscsi/nodes/". Illegal configuration file will be skipped and warned. The returned 'struct
iscsi_node' pointer array is sorted by target name, connection address, connection port and interface.
Name
iscsi_nodes_get - Retrieve all iSCSI nodes.
Return
int. Valid error codes are:
* LIBISCSI_OK
* LIBISCSI_ERR_BUG
* LIBISCSI_ERR_NOMEM
* LIBISCSI_ERR_ACCESS
* LIBISCSI_ERR_SYSFS_LOOKUP
* LIBISCSI_ERR_IDBM
Error number could be converted to string by iscsi_strerror.
July 2025 iscsi_nodes_get iscsi_nodes_get(3)
Synopsis
intiscsi_nodes_get(structiscsi_context*ctx,structiscsi_node***nodes,uint32_t*node_count);
