Rework Communication+Link to Connection

This commit is contained in:
Daniel
2020-04-07 17:30:33 +02:00
parent eec0c37101
commit 38f57a8954
21 changed files with 862 additions and 1741 deletions

View File

@@ -50,7 +50,7 @@ func GetPermittedPort() uint16 {
// generate port between 10000 and 65535
rN, err := rng.Number(55535)
if err != nil {
log.Warningf("firewall: failed to generate random port: %s", err)
log.Warningf("filter: failed to generate random port: %s", err)
return 0
}
port := uint16(rN + 10000)