diff options
| -rw-r--r-- | xlators/protocol/auth/addr/src/addr.c | 24 | ||||
| -rw-r--r-- | xlators/protocol/auth/login/src/login.c | 16 | 
2 files changed, 35 insertions, 5 deletions
diff --git a/xlators/protocol/auth/addr/src/addr.c b/xlators/protocol/auth/addr/src/addr.c index 3e62d05a05a..cc5897316b0 100644 --- a/xlators/protocol/auth/addr/src/addr.c +++ b/xlators/protocol/auth/addr/src/addr.c @@ -300,14 +300,32 @@ out:  struct volume_options options[] = {          { .key   = {"auth.addr.*.allow"}, -          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST +          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST, +          .default_value = "*", +          .description   = "List of addresses to be allowed to access volume", +          .op_version    = {1}, +          .flags         = OPT_FLAG_SETTABLE | OPT_FLAG_DOC, +          .tags          = {}, +          /* option_validation_fn validate_fn; */          },          { .key   = {"auth.addr.*.reject"}, -          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST +          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST, +          .default_value = "*", +          .description   = "List of addresses to be rejected to access volume", +          .op_version    = {1}, +          .flags         = OPT_FLAG_SETTABLE | OPT_FLAG_DOC, +          .tags          = {}, +          /* option_validation_fn validate_fn; */          },          /* Backword compatibility */          { .key   = {"auth.ip.*.allow"}, -          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST +          .type  = GF_OPTION_TYPE_INTERNET_ADDRESS_LIST, +          .default_value = "*", +          .description   = "List of addresses to be allowed to access volume", +          .op_version    = {1}, +          .flags         = OPT_FLAG_SETTABLE | OPT_FLAG_DOC, +          .tags          = {}, +          /* option_validation_fn validate_fn; */          },          { .key = {NULL} }  }; diff --git a/xlators/protocol/auth/login/src/login.c b/xlators/protocol/auth/login/src/login.c index e799dd22c1f..9ee8a0c7a7b 100644 --- a/xlators/protocol/auth/login/src/login.c +++ b/xlators/protocol/auth/login/src/login.c @@ -155,10 +155,22 @@ out:  struct volume_options options[] = {          { .key   = {"auth.login.*.allow"}, -          .type  = GF_OPTION_TYPE_ANY +          .type  = GF_OPTION_TYPE_ANY, +          .default_value = "*", +          .description   = "Username to be allowed access to the volume", +          .op_version    = {1}, +          .flags         = OPT_FLAG_SETTABLE | OPT_FLAG_DOC, +          .tags          = {}, +          /* option_validation_fn validate_fn; */          },          { .key   = {"auth.login.*.password"}, -          .type  = GF_OPTION_TYPE_ANY +          .type  = GF_OPTION_TYPE_ANY, +          .default_value = "*", +          .description   = "Password for the allowed username", +          .op_version    = {1}, +          .flags         = OPT_FLAG_SETTABLE | OPT_FLAG_DOC, +          .tags          = {}, +          /* option_validation_fn validate_fn; */          },          { .key = {NULL} }  };  | 
