Home | History | Annotate | Download | only in racoon

Lines Matching full:range

206  * 		configured range for a policy rule.
208 * char *range Range
209 * return: 1 if the sl is within the range
210 * 0 if the sl is not within the range or an error
215 within_range(security_context_t sl, security_context_t range)
224 if (!*range) /* This policy doesn't have security context */
231 * Get the sids for the sl and range contexts
240 rtn = avc_context_to_sid(range, &rangesid);
244 "sid for range context (%s).\n", range);
250 * Straight up test between sl and range
257 "within_range: The sl is not within range\n");
263 "within_range: The sl (%s) is within range (%s)\n", sl, range);