diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-25 13:03:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-25 13:03:03 +0000 |
commit | 382e95752145e6c8408ec8ff69176575c9258cd4 (patch) | |
tree | 93db3bb003798d282fd1be46112daba1e7e9b87b /src/inspircd.cpp | |
parent | 6cd3c99ca10220ca1451307f3b8d03cf6e3c4b7e (diff) |
Fixes for removal of serverrec
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1946 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 88b9e2042..17ad9d59d 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -140,7 +140,7 @@ userrec* fd_ref_table[65536]; int statsAccept = 0, statsRefused = 0, statsUnknown = 0, statsCollisions = 0, statsDns = 0, statsDnsGood = 0, statsDnsBad = 0, statsConnects = 0, statsSent= 0, statsRecv = 0; -serverrec* me[32]; + FILE *log_file; @@ -160,7 +160,7 @@ struct linger linger = { 0 }; char MyExecutable[1024]; int boundPortCount = 0; int portCount = 0, SERVERportCount = 0, ports[MAXSOCKS]; -int defaultRoute = 0; + char ModPath[MAXBUF]; /* prototypes */ @@ -172,7 +172,6 @@ char* Passwd(userrec *user); bool IsDenied(userrec *user); void AddWhoWas(userrec* u); -std::vector<long> auth_cookies; std::stringstream config_f(stringstream::in | stringstream::out); std::vector<userrec*> all_opers; |