Skip to content

Adding new options flags

Bee edited this page Oct 16, 2020 · 1 revision

Do you want to add a new flag, like rustscan --new-flag?

Here's the flow:

  1. Add the option to the Config struct
  2. If the new flag is Optional (without a default), add it to the merge_optional! call here.
  3. Otherwise, add it to the merge_required! call here.