Chris PeBenito 44fc06
## <summary>RADIUS authentication and accounting server.</summary>
Chris PeBenito 44fc06
Chris PeBenito 44fc06
########################################
Chris PeBenito 44fc06
## <summary>
Chris PeBenito 44fc06
##	Use radius over a UDP connection.
Chris PeBenito 44fc06
## </summary>
Chris PeBenito 44fc06
## <param name="domain">
Chris PeBenito 885b83
##	<summary>
Chris PeBenito 44fc06
##	Domain allowed access.
Chris PeBenito 885b83
##	</summary>
Chris PeBenito 44fc06
## </param>
Chris PeBenito 44fc06
#
Chris PeBenito 44fc06
interface(`radius_use',`
Chris PeBenito 44fc06
	gen_require(`
Chris PeBenito 9fd4b8
		type radiusd_t;
Chris PeBenito 44fc06
	')
Chris PeBenito 44fc06
Chris PeBenito 44fc06
	allow $1 radiusd_t:udp_socket sendto;
Chris PeBenito 44fc06
	allow radiusd_t $1:udp_socket recvfrom;
Chris PeBenito 44fc06
Chris PeBenito 44fc06
	allow radiusd_t $1:udp_socket sendto;
Chris PeBenito 44fc06
	allow $1 radiusd_t:udp_socket recvfrom;
Chris PeBenito 44fc06
')