Skip to content

Commit

Permalink
Revert the name change of some command line arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjeker authored and job committed Aug 7, 2024
1 parent 414d63e commit 005b86c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/stayrtr/stayrtr.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ var (
RefreshRTR = flag.Int("rtr.refresh", 3600, "Refresh interval")
RetryRTR = flag.Int("rtr.retry", 600, "Retry interval")
ExpireRTR = flag.Int("rtr.expire", 7200, "Expire interval")
SendNotifs = flag.Bool("rtr.notifications", true, "Send notifications to clients (disable with -notifications=false)")
EnforceVersion = flag.Bool("rtr.enforce.version", false, "Disable version negotiation")
DisableBGPSec = flag.Bool("rtr.disable.bgpsec", false, "Disable sending out BGPSEC Router Keys")
DisableASPA = flag.Bool("rtr.disable.aspa", false, "Disable sending out ASPA objects")
SendNotifs = flag.Bool("notifications", true, "Send notifications to clients (disable with -notifications=false)")
EnforceVersion = flag.Bool("enforce.version", false, "Disable version negotiation")
DisableBGPSec = flag.Bool("disable.bgpsec", false, "Disable sending out BGPSEC Router Keys")
DisableASPA = flag.Bool("disable.aspa", false, "Disable sending out ASPA objects")


Bind = flag.String("bind", ":8282", "Bind address")
Expand Down

0 comments on commit 005b86c

Please sign in to comment.