oomon-cvs Mailing List for Object Oriented Monitor Bot
Brought to you by:
tjensen
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
|---|
|
From: <tj...@us...> - 2003-11-18 15:10:40
|
Update of /cvsroot/oomon/oomon
In directory sc8-pr-cvs1:/tmp/cvs-serv23279
Modified Files:
dcc.cc dcc.h
Log Message:
- let all authenticated users access the .status command
Index: dcc.cc
===================================================================
RCS file: /cvsroot/oomon/oomon/dcc.cc,v
retrieving revision 2.1.1.1
retrieving revision 2.2
diff -C2 -d -r2.1.1.1 -r2.2
*** dcc.cc 14 Nov 2003 22:49:34 -0000 2.1.1.1
--- dcc.cc 18 Nov 2003 15:10:37 -0000 2.2
***************
*** 1770,1774 ****
DCC::status(const std::string & to, std::string text)
{
! if (this->Flags & UF_MASTER)
{
if (to == "")
--- 1770,1774 ----
DCC::status(const std::string & to, std::string text)
{
! if (this->Flags & UF_AUTHED)
{
if (to == "")
Index: dcc.h
===================================================================
RCS file: /cvsroot/oomon/oomon/dcc.h,v
retrieving revision 2.1.1.1
retrieving revision 2.2
diff -C2 -d -r2.1.1.1 -r2.2
*** dcc.h 14 Nov 2003 22:49:34 -0000 2.1.1.1
--- dcc.h 18 Nov 2003 15:10:37 -0000 2.2
***************
*** 125,129 ****
// Generic commands
DCC_AUTH, DCC_QUIT, DCC_CHAT, DCC_WHO, DCC_LINKS, DCC_HELP, DCC_WATCH,
! DCC_MOTD, DCC_ECHO, DCC_INFO,
// +K commands
--- 125,129 ----
// Generic commands
DCC_AUTH, DCC_QUIT, DCC_CHAT, DCC_WHO, DCC_LINKS, DCC_HELP, DCC_WATCH,
! DCC_MOTD, DCC_ECHO, DCC_INFO, DCC_STATUS,
// +K commands
***************
*** 144,149 ****
// +M commands
! DCC_DIE, DCC_CONN, DCC_DISCONN, DCC_RAW, DCC_TRAP, DCC_TEST, DCC_STATUS,
! DCC_SAVE, DCC_LOAD, DCC_SET, DCC_SPAMSUB, DCC_SPAMUNSUB,
// +C commands
--- 144,149 ----
// +M commands
! DCC_DIE, DCC_CONN, DCC_DISCONN, DCC_RAW, DCC_TRAP, DCC_TEST, DCC_SAVE,
! DCC_LOAD, DCC_SET, DCC_SPAMSUB, DCC_SPAMUNSUB,
// +C commands
|