final tweak to daemon docs. I'll clean up the comments tomorrow night.

This commit is contained in:
idk
2018-09-14 01:34:33 -04:00
parent db94225e60
commit 6bc7558bef
4 changed files with 15 additions and 13 deletions

View File

@ -118,6 +118,7 @@ example-config:
@echo "" >> USAGE.md
@echo "(**ephsite** will only use top-level options, but they can be labeled or" >> USAGE.md
@echo "unlabeled)" >> USAGE.md
@echo "" >> USAGE.md
@echo "(**samcatd** treats the first set of options it sees as the default, and" >> USAGE.md
@echo "does not start tunnels based on unlabeled options unless passed the" >> USAGE.md
@echo "-s flag.)" >> USAGE.md

View File

@ -75,12 +75,12 @@ I'm eventually going to make the manager implement net.Conn. This won't be
exposed in the default application probably though, but rather as a library.
-----BEGIN PGP SIGNATURE-----
iQEzBAEBCAAdFiEEcNIGBzi++AUjrK/311wDs5teFOEFAlubRJsACgkQ11wDs5te
FOEydAf/UTWAPLhqjqOb1FGiqcW4TmQTe6IKm807FQ0sPDdI5HnDiyNktCJBKeQG
dmAOTMDveMmc33Fk069ru7fD9VZ476qSwnr3598ii6q0ZRXIUU+MU+hcYrHLwkGp
HwYHAJaDxZsPg5qmzk0JaJ5A7UUmB2ASaWVtlvnUxGcCwt/4QFRSAFpEmJ4Xg0d7
eu1UGTRC/Z6NuxZ30GZRLZtw4dCH36Hrq4x2xvVpNtsXef4do5ElyIZvgRd7TisH
CKwlShJtf4apmCKFoJK6LvsZrqJeq4QpG3+dwXclZCiuFaDGhh+JlCq6/9yiOjCD
BtYbpAW3pC9bN55d3Ww6pu4LNOiGrA==
=xhzr
iQEzBAEBCAAdFiEEcNIGBzi++AUjrK/311wDs5teFOEFAlubSGUACgkQ11wDs5te
FOEiqQf7Bbhd2ibzTliceeIIFg5TbfFVa1TGmo978YxR4V7kFlfSnv4QlxzlX+E0
T8BYPOj353o7gWVF8dni61w9PJzc0+QVYbFoww+S5VTzwLDDb/pp2vxHHgUbQBdB
ziEbERMVxZw3ouHieGt1lG6vj5ol9vpH7r9qTfrKO2TaLk7YCjfX5IZPv4rVpDjR
AvM7IGWIaIMNTkvXLxMXSSbS0XgC/yf6w9cmW0OaJSHgSYQSuM/RETUyCa2lPRRC
0inVziTdYO/DMQ468sjaXLWrFM0bXfSjWCL4wCEXnPnRAzjhA6urXyuT5YVwE7k1
IHbbrDLhJur3SiqhO2mlGzEyMxGCrg==
=qo5s
-----END PGP SIGNATURE-----

View File

@ -165,6 +165,7 @@ in. For up-to-the-minute options, see [the checklist](config/CHECKLIST.md)
(**ephsite** will only use top-level options, but they can be labeled or
unlabeled)
(**samcatd** treats the first set of options it sees as the default, and
does not start tunnels based on unlabeled options unless passed the
-s flag.)

View File

@ -87,23 +87,23 @@ var (
"Set inbound tunnel length(0 to 7)")
outLength = flag.Int("ol", 3,
"Set outbound tunnel length(0 to 7)")
inQuantity = flag.Int("ic", 6,
inQuantity = flag.Int("iq", 6,
"Set inbound tunnel quantity(0 to 15)")
outQuantity = flag.Int("oc", 6,
outQuantity = flag.Int("oq", 6,
"Set outbound tunnel quantity(0 to 15)")
inVariance = flag.Int("iv", 0,
"Set inbound tunnel length variance(-7 to 7)")
outVariance = flag.Int("ov", 0,
"Set outbound tunnel length variance(-7 to 7)")
inBackupQuantity = flag.Int("ib", 4,
inBackupQuantity = flag.Int("ib", 2,
"Set inbound tunnel backup quantity(0 to 5)")
outBackupQuantity = flag.Int("ob", 4,
outBackupQuantity = flag.Int("ob", 2,
"Set outbound tunnel backup quantity(0 to 5)")
reduceIdleTime = flag.Int("rt", 600000,
"Reduce tunnel quantity after X (milliseconds)")
closeIdleTime = flag.Int("ct", 600000,
"Reduce tunnel quantity after X (milliseconds)")
reduceIdleQuantity = flag.Int("rc", 3,
reduceIdleQuantity = flag.Int("rq", 3,
"Reduce idle tunnel quantity to X (0 to 5)")
)