[Dancer-changes] CVS: dancer/src command.c,1.6,1.7 netstuff.c,1.3,1.4
Brought to you by:
bagder
|
From: Alex H. <ho...@us...> - 2002-08-12 23:19:49
|
Update of /cvsroot/dancer/dancer/src
In directory usw-pr-cvs1:/tmp/cvs-serv11415
Modified Files:
command.c netstuff.c
Log Message:
Nuke some old ifdef's used by breese when he played around with
linkbots years ago.
Index: command.c
===================================================================
RCS file: /cvsroot/dancer/dancer/src/command.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- command.c 30 Jul 2002 16:21:59 -0000 1.6
+++ command.c 12 Aug 2002 23:19:46 -0000 1.7
@@ -588,21 +588,6 @@
"<nick>",
msg_help_used, CMD_NONE},
-#ifdef BREESE
- {"LINK", CmdLink,
- LEVEL_OWNER, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE,
- "<nick>",
- msg_help_link, CMD_NONE},
- {"LINKLIST\0LLIST ", CmdLinklist,
- LEVEL_OWNER, FALSE, TRUE, FALSE, TRUE, FALSE, FALSE, FALSE,
- "",
- msg_help_linklist, CMD_NONE},
- {"REMOTE\0ON ", CmdRemote,
- LEVEL_OWNER, FALSE, TRUE, FALSE, TRUE, FALSE, FALSE, FALSE,
- "<linkbot> <cmd> [<args>]",
- NULL, CMD_NONE},
-#endif
-
{"RELOAD", CmdReload,
LEVEL_OWNER, FALSE, TRUE, FALSE, FALSE, TRUE, FALSE, FALSE,
"[<userfile>]",
@@ -631,13 +616,6 @@
LEVEL_OWNER, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, FALSE,
"<command> <level/->",
msg_help_chgcmdlev, CMD_NONE},
-
-#ifdef BREESE
- {"WEBSTER\0DICT ", CmdWebster,
- LEVEL_OWNER, FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE,
- "<word>",
- msg_help_webster, CMD_NONE},
-#endif
{"LOG", CmdLog,
LEVEL_OWNER, FALSE, TRUE, TRUE, FALSE, TRUE, FALSE, FALSE,
Index: netstuff.c
===================================================================
RCS file: /cvsroot/dancer/dancer/src/netstuff.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- netstuff.c 10 Jun 2001 23:05:09 -0000 1.3
+++ netstuff.c 12 Aug 2002 23:19:46 -0000 1.4
@@ -717,15 +717,6 @@
}
}
-#ifdef BREESE
- /* --- Link bots --- */
-
- if (FD_ISSET(linkSocket, readset)) {
- if (0 < ReadLink(buffer))
- LinkParse(buffer);
- }
-#endif
-
/* --- Dcc clients --- */
for (c = First(clientHead); c; c = next) {
@@ -1070,11 +1061,6 @@
}
#endif
-#ifdef BREESE
- memset((char *)&fromaddr, 0, sizeof(fromaddr));
- fromaddr.sin_family = AF_INET;
- linkSocket = OpenLink();
-#endif
}
/* --- NetCleanup ------------------------------------------------- */
|