Popularity
2.9
Declining
Activity
6.2
Stable
15
2
5
Monthly Downloads: 114
Programming language: Elixir
License: MIT License
Tags:
Protocols
elixir_radius alternatives and similar packages
Based on the "Protocols" category.
Alternatively, view elixir_radius alternatives based on common mentions on social networks and blogs.
-
msgpax
High-performance and comprehensive MessagePack implementation for Elixir / msgpack.org[Elixir] -
protox
A reasonably fast, easy to use and 100% conformant Elixir library for Google Protocol Buffers (aka protobuf)
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of elixir_radius or a related project?
README
elixir-radius
RADIUS protocol encoding and decoding
example
#wrapper of gen_udp
{:ok,sk} = Radius.listen 1812
loop = fn(loop)->
#secret can be a string or a function returning a string
#{:ok,host,p} = Radius.recv sk,"123"
{:ok,host,p} = Radius.recv sk,fn(_host) -> secret end
IO.puts "From #{inspect host} : \n#{inspect p, pretty: true}"
resp = %Radius.Packet{code: "Access-Reject", id: p.id, auth: p.auth, secret: p.secret}
Radius.send sk,host,resp
loop.(loop)
end
loop.(loop)