diff options
| author | 2006-08-29 17:02:38 +0000 | |
|---|---|---|
| committer | 2006-08-29 17:02:38 +0000 | |
| commit | e7aac9ee56d7bfff83287e3068ac18f60d43a1f9 (patch) | |
| tree | ef150aeda61cb8826c21a64746a2775f38dd194c /src/modules/m_spanningtree.cpp | |
| parent | Hey, what the hell. Let's do remote ADMIN too. :) (diff) | |
Spanningtree tidyups
Start of SnomaskManager class
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5061 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
| -rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index ad7203177..3a020f342 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1735,9 +1735,11 @@ class TreeSocket : public InspSocket for (std::string::iterator v = params[5].begin(); v != params[5].end(); v++) _new->modes[(*v)-65] = 1; +#ifdef SUPPORT_IP6LINKS if (params[6].find_first_of(":") != std::string::npos) _new->SetSockAddr(AF_INET6, params[6].c_str(), 0); else +#endif _new->SetSockAddr(AF_INET, params[6].c_str(), 0); this->Instance->WriteOpers("*** Client connecting at %s: %s!%s@%s [%s]",_new->server,_new->nick,_new->ident,_new->host, _new->GetIPString()); |
