summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--src/messages.c23
-rw-r--r--src/protocol/plexus3.c3
-rw-r--r--version.log7
4 files changed, 22 insertions, 12 deletions
diff --git a/Changes b/Changes
index da714ddd4..28a6f4034 100644
--- a/Changes
+++ b/Changes
@@ -23,6 +23,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2006
Provided by ThaPrince <jon@vile.com> - 2006
08/22 F Plexus3 svid_mode3 support fixed. [ #00]
08/23 F Plexus3 syncing after remote netjoins issue. [ #00]
+09/08 F Plexus3 noop support. [ #00]
Anope Version 1.7.15
--------------------
diff --git a/src/messages.c b/src/messages.c
index 22aac8265..8dd784dc9 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -329,7 +329,7 @@ int m_version(char *source, int ac, char **av)
int m_whois(char *source, char *who)
{
BotInfo *bi;
- NickAlias *na;
+ NickAlias *na;
const char *clientdesc;
if (source && who) {
@@ -363,15 +363,18 @@ int m_whois(char *source, char *who)
start_time);
anope_cmd_318(source, bi->nick);
return MOD_CONT;
- } else if (!(ircd->svshold && UseSVSHOLD) && (na = findnick(who)) && (na->status & NS_KILL_HELD)) {
- /* We have a nick enforcer client here that we need to respond to.
- * We can't just say it doesn't exist here, even tho it does for
- * other servers :) -GD
- */
- anope_cmd_311("%s %s %s %s * :Services Enforcer", source, na->nick, NSEnforcerUser, NSEnforcerHost);
- anope_cmd_312("%s %s %s :%s", source, na->nick, ServerName, ServerDesc);
- anope_cmd_318(source, na->nick);
- return MOD_CONT;
+ } else if (!(ircd->svshold && UseSVSHOLD) && (na = findnick(who))
+ && (na->status & NS_KILL_HELD)) {
+ /* We have a nick enforcer client here that we need to respond to.
+ * We can't just say it doesn't exist here, even tho it does for
+ * other servers :) -GD
+ */
+ anope_cmd_311("%s %s %s %s * :Services Enforcer", source,
+ na->nick, NSEnforcerUser, NSEnforcerHost);
+ anope_cmd_312("%s %s %s :%s", source, na->nick, ServerName,
+ ServerDesc);
+ anope_cmd_318(source, na->nick);
+ return MOD_CONT;
} else {
anope_cmd_401(source, who);
return MOD_CONT;
diff --git a/src/protocol/plexus3.c b/src/protocol/plexus3.c
index 1e6b8ccb7..a5bd5d126 100644
--- a/src/protocol/plexus3.c
+++ b/src/protocol/plexus3.c
@@ -770,7 +770,8 @@ plexus_cmd_szline (char *mask, char *reason, char *whom)
void
plexus_cmd_svsnoop (char *server, int set)
{
- /* does not support */
+ send_cmd(ServerName, "ENCAP %s SVSNOOP %s",
+ server, (set ? "+" : "-"));
}
void
diff --git a/version.log b/version.log
index 6998d9b05..4b849ba03 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,15 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="15"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1153"
+VERSION_BUILD="1154"
# $Log$
#
+# BUILD : 1.7.15 (1154)
+# BUGS : N/A
+# NOTES : Fixed plexus3 noop support
+#
+#
# BUILD : 1.7.15 (1153)
# BUGS : 596
# NOTES : Applied first part of Heinz's win32 patch