From 24b1fbeec8e61e9636daaf606778c324d3ae3042 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 10 Aug 2006 21:39:57 +0000 Subject: Move all_opers into class InspIRCd git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4857 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/commands.cpp | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to 'src/commands.cpp') diff --git a/src/commands.cpp b/src/commands.cpp index 9fe677d70..48d0745d5 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -59,44 +59,6 @@ const long duration_d = duration_h * 24; const long duration_w = duration_d * 7; const long duration_y = duration_w * 52; -extern std::vector all_opers; - -void split_chlist(userrec* user, userrec* dest, const std::string &cl) -{ - std::string line; - std::ostringstream prefix; - std::string::size_type start, pos, length; - - prefix << ":" << ServerInstance->Config->ServerName << " 319 " << user->nick << " " << dest->nick << " :"; - line = prefix.str(); - - for (start = 0; (pos = cl.find(' ', start)) != std::string::npos; start = pos+1) - { - length = (pos == std::string::npos) ? cl.length() : pos; - - if (line.length() + length - start > 510) - { - user->Write(line); - line = prefix.str(); - } - - if(pos == std::string::npos) - { - line += cl.substr(start, length - start); - break; - } - else - { - line += cl.substr(start, length - start + 1); - } - } - - if (line.length()) - { - user->Write(line); - } -} - /* XXX - these really belong in helperfuncs perhaps -- w00t */ bool is_uline(const char* server) { -- cgit v1.2.3