#  -*- text -*-
#
#
#  $Id: 3aca291c88a9022283f99fc33480e5f5b05c6b2d $

#######################################################################
#
#  = Python Module
#
#  The `python` module processes attributes through a Python interpreter.
#
#  * Please see the `src/modules/rlm_python/example.py` sample.
#  * Please see https://www.python.org/doc/ for more information about the
#  Python language.
#
#  NOTE: Uncomment any `func_*` configuration items below which are
#  included in your module. If the module is called for a section which
#  does not have a function defined, it will return `noop`.
#
#  Please see the file global.d/python for server-global configuration
#  items which control the Python path.
#

#
#  [NOTE]
#  ====
#  See `raddb/global.d/python` for configuration items that affect the
#  python interpreter globally, such as the Python path.
#  ====
#

#
#  ## Configuration Settings
#
#  The Python API `threading.local()` may be used store thread
#  specific data such as connection handles.
#
python {
	#
	#  module::
	#
	#  Module to load functions from.
	#
	module = example

	#
	#  [NOTE]
	#  ====
	#  * You may set `mod_<section>` for any of the section to module
	#  mappings below, if you want to reference a function in a  different
	#  module.
	#
	#  * Uncomment `func_<section>` lines your module provides methods for.
	#  ====
	#

	#
	#  func_instantiate:: Called on module instantiation.
	#
#	func_instantiate = instantiate

	#
	#  func_detach:: Called on module unload.
	#
#	func_detach = detach

#	func_authorize = authorize
#	func_authenticate = authenticate
#	func_preacct = preacct
#	func_accounting = accounting
#	func_pre_proxy = pre_proxy
#	func_post_proxy = post_proxy
#	func_post_auth = post_auth

	#
	#  config { ... }::
	#
	#  You can define configuration items (and nested sub-sections) in python `config { ... }`
	#  section. These items will be accessible in the Python script through `radiusd.config`
	#  dict for instance:
	#
	#  e.g:
	#
	#  [source,python]
	#  ----
	#  radiusd.config['name']
	#  radiusd.config['sub-config']['name']
	#  ----
	#
#	config {
#		name = "value"
#		sub-config {
#			name = "value of name from config.sub-config"
#		}
#	}
}
