Lines Matching refs:protobp
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()
546 protobp->versmax = (nfs_server_vers_max > NFS_ACL_V3) ? in main()
548 protobp->program = NFS_ACL_PROGRAM; in main()
549 protobp->next = (struct protob *)NULL; in main()
591 free(protobp); in main()