Searched refs:nci_idlen (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs4_subs.c141 ncip->nci_idlen = sizeof(uint32_t) + sizeof(en0addr) + saddr->sa_len +
143 if (ncip->nci_idlen > NFS4_OPAQUE_LIMIT)
144 ncip->nci_idlen = NFS4_OPAQUE_LIMIT;
145 MALLOC(ncip->nci_id, char *, ncip->nci_idlen, M_TEMP, M_WAITOK);
153 len2 = min(sizeof(en0addr), ncip->nci_idlen-len);
156 len2 = min(saddr->sa_len, ncip->nci_idlen-len);
159 if (len < ncip->nci_idlen) {
160 len2 = strlcpy(&ncip->nci_id[len], vsfs->f_mntfromname, ncip->nci_idlen-len);
161 if (len2 < (ncip->nci_idlen - len))
164 len = ncip->nci_idlen;
[all...]
H A Dnfsmount.h240 int nci_idlen; /* length of client id buffer */ member in struct:nfs_client_id

Completed in 8 milliseconds