Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/nfs/
H A Dnfs_gss.c368 if (cp->gss_svc_handle == handle) { in nfs_gss_svc_ctx_find()
375 cp->gss_svc_handle = 0; in nfs_gss_svc_ctx_find()
415 cp->gss_svc_handle = random(); in nfs_gss_svc_ctx_insert()
416 if (cp->gss_svc_handle == 0) { in nfs_gss_svc_ctx_insert()
419 head = &nfs_gss_svc_ctx_hashtbl[SVC_CTX_HASH(cp->gss_svc_handle)]; in nfs_gss_svc_ctx_insert()
421 if (p->gss_svc_handle == cp->gss_svc_handle) { in nfs_gss_svc_ctx_insert()
469 (cp->gss_svc_handle ? GSS_SVC_CTX_TTL : 0) in nfs_gss_svc_ctx_timer()
1051 cp = nfs_gss_svc_ctx_find(cp->gss_svc_handle); in nfs_gss_svc_ctx_init()
1053 cp->gss_svc_handle = 0; // so it can't be found in nfs_gss_svc_ctx_init()
1079 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