Lines Matching refs:clnt
66 static CLIENT *clnt; local
75 if (clnt)
76 return (clnt);
90 clnt = clnt_tp_create(hostname,
92 if (clnt) {
101 if ((clnt == NULL) && (tpconf)) {
105 clnt = clnt_tp_create(hostname, GSSPROG, GSSVERS, tpconf);
107 if (clnt) {
124 if (clnt_control(clnt, CLSET_SVC_PRIV, NULL) != TRUE) {
125 clnt_destroy(clnt);
126 clnt = NULL;
130 if (clnt == NULL)
133 clnt->cl_auth = authsys_create("", getuid(), 0, 0, NULL);
134 if (clnt->cl_auth == NULL) {
135 clnt_destroy(clnt);
136 clnt = NULL;
141 (void) clnt_control(clnt, CLSET_RETRY_TIMEOUT, (char *)&wait_time);
143 return (clnt);