Searched refs:protobp (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/cmd/fs.d/nfs/nfs4cbd/ |
H A D | nfs4cbd.c | 98 struct protob *protobp; in main() local 194 protobp = (struct protob *)malloc(sizeof (struct protob)); in main() 195 protobp->serv = "NFS4_CALLBACK"; in main() 196 protobp->versmin = NFS_CB; in main() 197 protobp->versmax = NFS_CB; in main() 198 protobp->program = NFS4_CALLBACK; in main() 199 protobp->next = NULL; in main() 201 if (do_all(protobp, NULL) == -1) { in main() 205 free(protobp); in main()
|
/titanic_41/usr/src/cmd/fs.d/nfs/lockd/ |
H A D | lockd.c | 146 struct protob *protobp; in main() local 382 protobp = (struct protob *)malloc(sizeof (struct protob)); in main() 383 protobp->serv = "NLM"; in main() 384 protobp->versmin = NLM_VERS; in main() 385 protobp->versmax = NLM4_VERS; in main() 386 protobp->program = NLM_PROG; in main() 387 protobp->next = (struct protob *)NULL; in main() 392 do_one(provider, NULL, protobp, nlmsvc); in main() 395 free(protobp); in main()
|
/titanic_41/usr/src/cmd/fs.d/nfs/nfsd/ |
H A D | nfsd.c | 148 struct protob *protobp0, *protobp; in main() local 535 protobp0 = protobp = (struct protob *)malloc(sizeof (struct protob)); in main() 536 protobp->serv = "NFS"; in main() 537 protobp->versmin = nfs_server_vers_min; in main() 538 protobp->versmax = nfs_server_vers_max; in main() 539 protobp->program = NFS_PROGRAM; in main() 541 protobp->next = (struct protob *)malloc(sizeof (struct protob)); in main() 542 protobp = protobp->next; in main() 543 protobp->serv = "NFS_ACL"; /* not used */ in main() 544 protobp->versmin = nfs_server_vers_min; in main() [all …]
|
/titanic_41/usr/src/cmd/fs.d/nfs/lib/ |
H A D | nfs_tbind.c | 556 struct protob *protobp; in do_one() local 588 for (protobp = protobp0; protobp; protobp = protobp->next) { in do_one() 589 for (vers = protobp->versmin; vers <= protobp->versmax; in do_one() 591 if ((protobp->program == NFS_PROGRAM || in do_one() 592 protobp->program == NFS_ACL_PROGRAM) && in do_one() 597 (void) rpcb_unset(protobp->program, vers, retnconf); in do_one() 598 (void) rpcb_set(protobp->program, vers, retnconf, in do_one() 644 do_all(struct protob *protobp, in do_all() argument 660 (protobp->program != NFS4_CALLBACK || in do_all() 663 protobp, svc); in do_all()
|
/titanic_41/usr/src/cmd/avs/rdc/ |
H A D | sndrd.c | 430 do_all(struct protob *protobp, in do_all() argument 444 do_one(nconf->nc_device, nconf->nc_proto, protobp, svc); in do_all() 502 struct protob *protobp0, *protobp; in sndrd_lintmain() local 646 protobp0 = protobp = (struct protob *)malloc(sizeof (struct protob)); in sndrd_lintmain() 647 protobp->serv = RDC_SVC_NAME; in sndrd_lintmain() 648 protobp->versmin = RDC_VERS_MIN; in sndrd_lintmain() 649 protobp->versmax = RDC_VERS_MAX; in sndrd_lintmain() 650 protobp->program = RDC_PROGRAM; in sndrd_lintmain() 651 protobp->next = (struct protob *)NULL; in sndrd_lintmain() 667 free(protobp); in sndrd_lintmain()
|