Lines Matching defs:ypserv
113 CLIENT *ypserv;
204 * XXXCDC: note that yp_bind_local exits on failure so ypserv can't
210 ypserv = yp_bind_local(YPPROG, YPVERS);
211 retval = clnt_call(ypserv, YPPROC_CLEAR, xdr_void, 0, xdr_void, 0, tv);
213 errx(1, "clnt_call CLEAR to local ypserv: %s",
215 clnt_destroy(ypserv);
264 ypserv = yp_bind_host(master, YPPROG, YPVERS, 0, 1);
269 rv = yp_all_host(ypserv, ypi.ourdomain, "ypservers", &ypallcb);
309 CLIENT *ypserv;
325 ypserv = clnt_create(target, YPPROG, YPVERS, "tcp");
326 if (ypserv == NULL) {
375 * the "owner" field isn't used by ypserv (and shouldn't be, since
376 * the ypserv has no idea if we are a legitimate yppush or not).
396 rv = clnt_call(ypserv, YPPROC_XFR, xdr_ypreq_xfr, &req,
417 clnt_destroy(ypserv);