diff options
| author | 2008-01-13 03:51:04 +0000 | |
|---|---|---|
| committer | 2008-01-13 03:51:04 +0000 | |
| commit | de6bba7882bc53b5a23e4854069d4846616f2001 (patch) | |
| tree | e1a2210945e0d876dc27d71d71431dd1b308b867 /src/socket.cpp | |
| parent | First UserManager overhaul: Move clone counts out of InspIRCd & User. (diff) | |
Move User::AddClient to UserManager::AddClient. WARNING: I assure you this is currently WRONG as I was playing with moving a few bits to the constructor.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8706 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socket.cpp')
| -rw-r--r-- | src/socket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 2aa2c73b0..48c0170d3 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -117,7 +117,7 @@ void ListenSocket::HandleEvent(EventType, int) } } ServerInstance->stats->statsAccept++; - User::AddClient(ServerInstance, incomingSockfd, in_port, false, this->family, client); + ServerInstance->Users->AddClient(ServerInstance, incomingSockfd, in_port, false, this->family, client); } else { |
