diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-10 21:39:57 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-10 21:39:57 +0000 |
commit | 24b1fbeec8e61e9636daaf606778c324d3ae3042 (patch) | |
tree | 2eb9d1892dc0d35a969ac9ec3c3c8a6189ef3192 /src/commands.cpp | |
parent | d02a5866d4fdedec9219aeca0a6048828b394fd2 (diff) |
Move all_opers into class InspIRCd
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4857 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
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<userrec*> 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) { |