Searched defs:iscsiName (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libstmf/common/
H A Dstmf.c3410 * iscsiName - unicode nul terminated utf-8 encoded iSCSI name
3414 stmfDevidFromIscsiName(char *iscsiName, stmfDevid *devid) argument
3416 if (devid == NULL || iscsiName == NULL)
3422 if ((devid->identLength = strlen(iscsiName)) > MAX_ISCSI_NAME ||
3428 if ((strncmp(iscsiName, EUI, strlen(EUI)) != 0) &&
3429 strncmp(iscsiName, IQN, strlen(IQN)) != 0) {
3434 bcopy(iscsiName, devid->ident, devid->identLength);

Completed in 80 milliseconds