diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-06-17 18:37:47 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-06-27 00:47:39 +0200 |
commit | ba55ac6a72aae178b14b49b121a5f3bd1a738917 (patch) | |
tree | a6d41f7e274909839997aa174a7e3e9df83b45be /src | |
parent | 596bf6dca4800b018e46bca8f53fdf109c9b6218 (diff) |
m_cap Allow clients to disable specific capabilities by prefixing them with a dash (-) to be compliant with the specification
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_cap.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/modules/m_cap.h b/src/modules/m_cap.h index 9ce7f9501..ce7e7f394 100644 --- a/src/modules/m_cap.h +++ b/src/modules/m_cap.h @@ -57,13 +57,19 @@ class GenericCap CapEvent *data = static_cast<CapEvent*>(&ev); if (data->type == CapEvent::CAPEVENT_REQ) { - std::vector<std::string>::iterator it; - if ((it = std::find(data->wanted.begin(), data->wanted.end(), cap)) != data->wanted.end()) + for (std::vector<std::string>::iterator it = data->wanted.begin(); it != data->wanted.end(); ++it) { - // we can handle this, so ACK it, and remove it from the wanted list - data->ack.push_back(*it); - data->wanted.erase(it); - ext.set(data->user, 1); + if (it->empty()) + continue; + bool enablecap = ((*it)[0] != '-'); + if (((enablecap) && (*it == cap)) || (*it == "-" + cap)) + { + // we can handle this, so ACK it, and remove it from the wanted list + data->ack.push_back(*it); + data->wanted.erase(it); + ext.set(data->user, enablecap ? 1 : 0); + break; + } } } else if (data->type == CapEvent::CAPEVENT_LS) |