fixed readme

This commit is contained in:
Ellie D 2019-06-01 13:12:25 -05:00
parent 5941fe4728
commit 6db18f179f
1 changed files with 4 additions and 4 deletions

View File

@ -52,10 +52,10 @@ Additionaly, ports suffixed with `w` only accept connections from IP addresses l
Entries in the blacklist take precedence over entries in the whitelist, so addresses listed in
both places will not be able to connect.
Using `w` with an empty or missing `.yesunbeam` file is nearly equivalent to using `p`, with the
difference being that `p` causes the socket to bind to `127.0.0.1` instead of the public address,
while `w` keeps the binding public but checks all incoming connections against a hash table of
allowed addresses and drops them if they are not found. `p` is likely a little bit faster, but
only `w` will print a notification to the console whenever a connection is rejected.
difference being that `p` causes the listener socket to bind to `127.0.0.1` instead of the public
address, while `w` keeps the binding public but checks all incoming connections against a hash
table of allowed addresses and drops them if they are not found. `p` is likely a little bit
faster, but only `w` will print a notification to the console whenever a connection is rejected.
If a port is suffixed with both `w` and `p`, whichever is listed last will take precedence.