This commit is contained in:
moznion
2020-12-07 23:28:38 +09:00
parent 93b951eff8
commit 3e6701b0b1
9 changed files with 79 additions and 13 deletions
+10 -11
View File
@@ -4,10 +4,17 @@ A async/await native implementation of the RADIUS server and client for Rust.
## Description
**THIS PROJECT IS UNDER DEVELOPMENT STATUS. IT WOULD CHANGE WITHOUT NOTICES.**
This RADIUS server and client implementation use [tokio](https://tokio.rs/) to support asynchronous operations natively. This implementation satisfies basic functions that are described in [RFC2865](https://tools.ietf.org/html/rfc2865).
## Usage
Simple example implementations are here:
- [server](./examples/server.rs)
- [client](./examples/client.rs)
## Supported Dictionaries
This supports the following RFC dictionaries at the moment:
- [RFC2865](https://tools.ietf.org/html/rfc2865)
@@ -35,13 +42,6 @@ This supports the following RFC dictionaries at the moment:
- [RFC7055](https://tools.ietf.org/html/rfc7055)
- [RFC7155](https://tools.ietf.org/html/rfc7155)
## Usage
Simple example implementations are here:
- [server](./examples/server.rs)
- [client](./examples/client.rs)
## Roadmap
- retransmission feature on the client
@@ -59,9 +59,8 @@ Simple example implementations are here:
## Note
Original implementation and design of this are based on [layeh/radius](https://github.com/layeh/radius).
The original implementation and design of this are inspired by [layeh/radius](https://github.com/layeh/radius).
## Author
moznion (<moznion@gmail.com>)