aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHenauxg <19689618+Henauxg@users.noreply.github.com>2022-10-25 12:24:25 +0200
committerHenauxg <19689618+Henauxg@users.noreply.github.com>2022-10-25 12:24:25 +0200
commitc3c2fba5d58e20b22e4ffaff8c0dc68a6573917e (patch)
treec51c13c2959f8cddaa31e971c45b472b2b705d9e /README.md
parentc1690ce9b1aea8195ac86b567386d9189ae13439 (diff)
README: add missing feature and fix a typo
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index ef75747..ea13113 100644
--- a/README.md
+++ b/README.md
@@ -52,6 +52,7 @@ Those are the features/tasks that will probably come next (in no particular orde
- [ ] Security: Expose Quinn support of CA certificates for the server
- [x] Feature: Send messages from the server to a specific client
- [x] Feature: Send messages from the server to a selected group of clients
+- [ ] Feature: Raise connection/disconnection events from the plugins
- [ ] Feature: Send unordered reliable messages from the server
- [ ] Feature: Implementing a way to launch a local server from a client
- [ ] Performance: Messages aggregation before sending
@@ -163,7 +164,7 @@ fn handle_client_messages(
}
```
-You can also use `server.broadcast_message`, which will send a message to all connected clients. "Connected" here means connected to the server plugin, which happens before your own app handshakes/verifications if you have any. Use `send_group_message` to ccontrol the recipients.
+You can also use `server.broadcast_message`, which will send a message to all connected clients. "Connected" here means connected to the server plugin, which happens before your own app handshakes/verifications if you have any. Use `send_group_message` if you want to control the recipients.
## Example