Skip to content

Commit 89630e9

Browse files
committed
Basic CRL module
1 parent eddb13c commit 89630e9

File tree

6 files changed

+418
-0
lines changed

6 files changed

+418
-0
lines changed

raddb/mods-available/crl

Whitespace-only changes.

share/dictionary/freeradius/dictionary

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ $INCLUDE dictionary.freeradius.internal.ippool
2222
# 5200-5299 SIM management attributes
2323
$INCLUDE dictionary.freeradius.internal.sim
2424

25+
# 6000-6001 CRL module attributes
26+
$INCLUDE dictionary.freeradius.internal.crl
27+
2528
#
2629
# Include module-specific dictionaries.
2730
#
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# -*- text -*-
2+
# Copyright (C) 2022 The FreeRADIUS Server project and contributors
3+
# This work is licensed under CC-BY version 4.0 https://creativecommons.org/licenses/by/4.0
4+
# Version $Id$
5+
#
6+
# Attributes used by sim code (5200-5299)
7+
#
8+
# $Id$
9+
#
10+
11+
#
12+
# All of these attributes are internal.
13+
#
14+
FLAGS internal
15+
16+
ATTRIBUTE CRL 6000 tlv
17+
ATTRIBUTE Data .1 octets
18+
ATTRIBUTE CDP-URL .2 string

src/modules/rlm_crl/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# rlm_dict
2+
## Metadata
3+
<dl>
4+
<dt>category</dt><dd>datastore</dd>
5+
</dl>
6+
7+
## Summary
8+
Registers xlats and maps to access dictionary data

src/modules/rlm_crl/all.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
TARGETNAME := rlm_crl
2+
3+
TARGET := $(TARGETNAME)$(L)
4+
SOURCES := $(TARGETNAME).c

0 commit comments

Comments
 (0)