Skip to content

Commit

Permalink
Ups, commited debug stuff accidentally...
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthGandalf committed Apr 1, 2012
1 parent b8822b8 commit 1a8455b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions modules/webadmin.cpp
Expand Up @@ -1311,21 +1311,11 @@ class CWebAdminMod : public CModule {
} }


bool DelListener(CWebSock& WebSock, CTemplate& Tmpl) { 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(); unsigned int uPort = WebSock.GetParam("port").ToUInt();
CString sHost = WebSock.GetParam("host"); CString sHost = WebSock.GetParam("host");
bool bIPv4 = WebSock.GetParam("ipv4").ToBool(); bool bIPv4 = WebSock.GetParam("ipv4").ToBool();
bool bIPv6 = WebSock.GetParam("ipv6").ToBool(); bool bIPv6 = WebSock.GetParam("ipv6").ToBool();


DEBUG("Port [" << WebSock.GetParam("port") << "]");

EAddrType eAddr = ADDR_ALL; EAddrType eAddr = ADDR_ALL;
if (bIPv4) { if (bIPv4) {
if (bIPv6) { if (bIPv6) {
Expand Down

0 comments on commit 1a8455b

Please sign in to comment.