mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Ups, commited debug stuff accidentally...
This commit is contained in:
@@ -1311,21 +1311,11 @@ public:
|
||||
}
|
||||
|
||||
bool DelListener(CWebSock& WebSock, CTemplate& Tmpl) {
|
||||
map<CString, VCString> m = WebSock.GetParams();
|
||||
DEBUG("zzz");
|
||||
for (map<CString, VCString>::iterator i = m.begin(); i != m.end(); ++i) {
|
||||
DEBUG("xxxxxxxxxxxxxxxxxxx[" << i->first << "]");
|
||||
for (VCString::iterator it = i->second.begin(); it != i->second.end(); ++it) {
|
||||
DEBUG("yyyyyyyy[" << *it << "]");
|
||||
}
|
||||
}
|
||||
unsigned int uPort = WebSock.GetParam("port").ToUInt();
|
||||
CString sHost = WebSock.GetParam("host");
|
||||
bool bIPv4 = WebSock.GetParam("ipv4").ToBool();
|
||||
bool bIPv6 = WebSock.GetParam("ipv6").ToBool();
|
||||
|
||||
DEBUG("Port [" << WebSock.GetParam("port") << "]");
|
||||
|
||||
EAddrType eAddr = ADDR_ALL;
|
||||
if (bIPv4) {
|
||||
if (bIPv6) {
|
||||
|
||||
Reference in New Issue
Block a user