Lines Matching +full:master +full:- +full:side
1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
18 * 4. Neither the name of the author nor the names of any co-contributors
34 * ypupdate client-side library function.
61 char *master; in yp_update() local
71 /* Get the master server name for 'domain.' */ in yp_update()
72 if ((rval = yp_master(domain, map, &master))) in yp_update()
76 if (getrpcport(master, YPU_PROG, YPU_VERS, ypop)) in yp_update()
80 if ((clnt = clnt_create(master, YPU_PROG, YPU_VERS, "tcp")) == NULL) in yp_update()
87 * be the netname of the guy on the other side, not your own in yp_update()
88 * netname. This is how the client side knows what public key in yp_update()
90 * only works if the server on the other side is running under in yp_update()
93 if (!host2netname(netname, master, domain)) { in yp_update()
102 if ((clnt->cl_auth = (AUTH *)authdes_create(netname, WINDOW, NULL, in yp_update()
114 * the rpcgen-erated client stubs. We could use those stubs, but in yp_update()
194 auth_destroy(clnt->cl_auth); in yp_update()
196 free(master); in yp_update()