diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:49:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:49:46 +0000 |
commit | 50b37d4a27d3295a29afca2286f1a5a086142cec (patch) | |
tree | 9212f763934ee090ef72d823f559f52ce387f268 /src/modules/rlm_python/radiusd.py | |
parent | Initial commit. (diff) | |
download | freeradius-upstream/3.2.1+dfsg.tar.xz freeradius-upstream/3.2.1+dfsg.zip |
Adding upstream version 3.2.1+dfsg.upstream/3.2.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/modules/rlm_python/radiusd.py')
-rw-r--r-- | src/modules/rlm_python/radiusd.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/modules/rlm_python/radiusd.py b/src/modules/rlm_python/radiusd.py new file mode 100644 index 0000000..7129923 --- /dev/null +++ b/src/modules/rlm_python/radiusd.py @@ -0,0 +1,47 @@ +#! /usr/bin/env python2 +# +# Definitions for RADIUS programs +# +# Copyright 2002 Miguel A.L. Paraz <mparaz@mparaz.com> +# +# This should only be used when testing modules. +# Inside freeradius, the 'radiusd' Python module is created by the C module +# and the definitions are automatically created. +# +# $Id$ + +# from modules.h + +RLM_MODULE_REJECT = 0 +RLM_MODULE_FAIL = 1 +RLM_MODULE_OK = 2 +RLM_MODULE_HANDLED = 3 +RLM_MODULE_INVALID = 4 +RLM_MODULE_USERLOCK = 5 +RLM_MODULE_NOTFOUND = 6 +RLM_MODULE_NOOP = 7 +RLM_MODULE_UPDATED = 8 +RLM_MODULE_NUMCODES = 9 + +# from log.h +L_AUTH = 2 +L_INFO = 3 +L_ERR = 4 +L_WARN = 5 +L_PROXY = 6 +L_ACCT = 7 + +L_DBG = 16 +L_DBG_WARN = 17 +L_DBG_ERR = 18 +L_DBG_WARN_REQ = 19 +L_DBG_ERR_REQ = 20 + +# log function +def radlog(level, msg): + import sys + sys.stdout.write(msg + '\n') + + level = level + + |