Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SSL_connect misuse #2595

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Fix syntax errors in examples
Problematics examples: addRoleACL and removeRoleACL
  • Loading branch information
marchputt committed Jun 22, 2022
commit 9417facffac9d69cd7dcbc1bf0a1af1b9edd4621
4 changes: 2 additions & 2 deletions www/pages/documentation/dynamic-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ Where `acltype` is one of `publishClientSend`, `publishClientReceive`,
For example:

```
mosquitto_ctrl <options> dynsec addRoleACL <rolename> clientPublishSend client/topic allow 5
mosquitto_ctrl <options> dynsec addRoleACL <rolename> publishClientSend client/topic allow 5
```

To remove an ACL from a role using the topic filter as the key:
Expand All @@ -670,7 +670,7 @@ mosquitto_ctrl <options> dynsec removeRoleACL <rolename> <acltype> <topic filter
For example:

```
mosquitto_ctrl <options> dynsec removeRoleACL <rolename> clientPublishSend client/topic
mosquitto_ctrl <options> dynsec removeRoleACL <rolename> publishClientSend client/topic
```

To get information on a role:
Expand Down