Home
last modified time | relevance | path

Searched refs:gss_svc_handle (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.61.12/bsd/nfs/
H A Dnfs_gss.c370 if (cp->gss_svc_handle == handle) { in nfs_gss_svc_ctx_find()
377 cp->gss_svc_handle = 0; in nfs_gss_svc_ctx_find()
417 cp->gss_svc_handle = random(); in nfs_gss_svc_ctx_insert()
418 if (cp->gss_svc_handle == 0) { in nfs_gss_svc_ctx_insert()
421 head = &nfs_gss_svc_ctx_hashtbl[SVC_CTX_HASH(cp->gss_svc_handle)]; in nfs_gss_svc_ctx_insert()
423 if (p->gss_svc_handle == cp->gss_svc_handle) { in nfs_gss_svc_ctx_insert()
471 (cp->gss_svc_handle ? GSS_SVC_CTX_TTL : 0) in nfs_gss_svc_ctx_timer()
1053 cp = nfs_gss_svc_ctx_find(cp->gss_svc_handle); in nfs_gss_svc_ctx_init()
1055 cp->gss_svc_handle = 0; // so it can't be found in nfs_gss_svc_ctx_init()
1081 nfsm_chain_add_32(error, &nmrep, sizeof(cp->gss_svc_handle)); in nfs_gss_svc_ctx_init()
[all …]
H A Dnfs_gss.h80 uint32_t gss_svc_handle; // Identifies server context to client member