From 659f232dc8886f4d71adf452fea88fa1d7544cad Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 19 Mar 2024 23:35:35 +0100 Subject: [PATCH] Fixed a typo --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 511d071..1dd5af2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # UdpSocketServer This program listen on an ip for UDP message and print them. You can configure it to forward a message from an address -to another, are blacklist a list of address. +to another, or blacklist a list of address. ## Build @@ -11,6 +11,12 @@ Use this command cargo build ```` +Or for a release version + +```` +cargo build --release +```` + ## Run Use this command, it will compile the source code to an executable @@ -41,7 +47,7 @@ You have a config.json file, like this: } ```` -The blacklist field is easy to understand: all addresses written are ignored by the server. +The blacklist field is simple: all addresses written are ignored by the server. The forwarding field is a list of object indicating that if the server receive a message from the address at "from" field it should send it back to "to" address. The doReverse field, if set to true, will permit that when we a message from "to" address, it is sent to "from" address.