Lines Matching refs:host
465 /* Get the source host */
470 * source host.
481 /* The target host is always the current machine */
715 struct hbac_request_element *host;
725 host = talloc_zero(tmp_ctx, struct hbac_request_element);
726 if (host == NULL) {
731 host->name = hostname;
733 if (host->name == NULL) {
734 /* We don't know the host (probably an rhost)
737 ret = create_empty_grouplist(host);
741 host_dn = sysdb_custom_dn(tmp_ctx, domain, host->name, HBAC_HOSTS_SUBDIR);
747 /* Look up the host to get its originalMemberOf entries */
755 * a host category of ALL
757 ret = create_empty_grouplist(host);
771 * a host category of ALL
773 ret = create_empty_grouplist(host);
778 host->groups = talloc_array(host, const char *, el->num_values + 1);
779 if (host->groups == NULL) {
795 * host group. We'll just ignore those (could be
800 host->groups[j] = talloc_steal(host->groups, name);
804 host->groups[j] = NULL;
810 *host_element = talloc_steal(mem_ctx, host);