Skip to content

Commit 09ec3c9

Browse files
committed
minor doc fixes
1 parent 9be8db5 commit 09ec3c9

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/book/src/cpp-broker/Security.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,10 @@ com.sun.security.jgss.initiate {
374374

375375
<programlisting>
376376
group admin ted@QPID martin@QPID
377-
group blacklist usera@qpid userb@qpid
377+
group blockedlist usera@qpid userb@qpid
378378
quota connections 10 admin
379379
quota connections 5 all
380-
quota connections 0 blacklist
380+
quota connections 0 blockedlist
381381
quota queues 50 admin
382382
quota queues 5 all
383383
quota queues 1 test@qpid
@@ -1705,7 +1705,7 @@ property = "name" | "durable" | "routingkey" | "autodelete" |
17051705
<para>
17061706
The next illustration shows the Debug-level log. Debug log level includes information about
17071707
constructing the rule tables, expanding groups and keywords, connection and queue quotas, and
1708-
connection black and white lists.
1708+
connection blocked and approved lists.
17091709
</para>
17101710
<programlisting>
17111711
notice ACL: Read file "/home/chug/acl/svn-acl.acl"

src/qpid/acl/AclConnectionCounter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ bool ConnectionCounter::approveConnection(
226226
(void) countConnectionLH(connectProgressMap, connection.getMgmtId(),
227227
C_OPENED, false, false);
228228

229-
// Run global black/white list check
229+
// Run global deny/allow list check
230230
sys::SocketAddress sa(hostName, "");
231231
bool okByHostList(true);
232232
std::string hostLimitText;

src/qpid/acl/AclData.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ AclResult AclData::isAllowedConnection(const std::string& userName,
693693
}
694694
}
695695

696-
// Run user black/white list check
696+
// Run user deny/allow list check
697697
if (!decisionMade) {
698698
bwHostUserRuleMapItr itrRule = connBWHostsUserRules->find(userName);
699699
if (itrRule != connBWHostsUserRules->end()) {

src/qpid/acl/AclData.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
namespace qpid {
3232
namespace acl {
3333

34-
/** A rule for tracking black/white host connection settings.
34+
/** A rule for tracking deny/allow host connection settings.
3535
* When a connection is attempted, the remote host is verified
3636
* against lists of these rules. When the remote host is in
3737
* the range specified by this aclHost then the AclResult is
@@ -238,10 +238,10 @@ class AclData {
238238
bool enforcingQueueQuotas() const { return queueQuotaRuleSettings->size() > 0; }
239239
bool getQueueQuotaForUser(const std::string&, uint16_t*) const;
240240

241-
// Global connection Black/White list rules
241+
// Global connection Deny/Allow list rules
242242
void setConnGlobalRules (boost::shared_ptr<bwHostRuleSet>);
243243

244-
// Per-user connection Black/White list rules map
244+
// Per-user connection Deny/Allow list rules map
245245
void setConnUserRules (boost::shared_ptr<bwHostUserRuleMap>);
246246

247247
/** getConnectMaxSpec
@@ -311,10 +311,10 @@ class AclData {
311311
// Per-user queue quota
312312
boost::shared_ptr<quotaRuleSet> queueQuotaRuleSettings;
313313

314-
// Global host connection black/white rule set
314+
// Global host connection deny/allow rule set
315315
boost::shared_ptr<bwHostRuleSet> connBWHostsGlobalRules;
316316

317-
// Per-user host connection black/white rule set map
317+
// Per-user host connection deny/allow rule set map
318318
boost::shared_ptr<bwHostUserRuleMap> connBWHostsUserRules;
319319
};
320320

0 commit comments

Comments
 (0)