diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-17 13:25:06 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-17 13:25:06 +0200 |
commit | 7e47e4184196952d7bd2ed2c79232fc374f9e664 (patch) | |
tree | c992c47cb7ea33187a3257cffe0c46664c0d09fe /src/modules/m_spanningtree/main.cpp | |
parent | d256e357ee65a8535738fa4a370da4086023043a (diff) |
m_spanningtree Add server-to-server SINFO command handler and builder
Don't send SINFO to 1202 protocol servers
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 5bf4583a4..59937cc6a 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -51,7 +51,7 @@ SpanningTreeCommands::SpanningTreeCommands(ModuleSpanningTree* module) away(module), addline(module), delline(module), encap(module), idle(module), nick(module), ping(module), pong(module), push(module), save(module), server(module), squit(module), snonotice(module), version(module), - burst(module), endburst(module) + burst(module), endburst(module), sinfo(module) { } |