diff options
| author | 2026-03-01 01:28:41 +0000 | |
|---|---|---|
| committer | 2026-03-01 01:28:41 +0000 | |
| commit | a1d25d2c14161d5eb466c14c936688fcc36a5a2f (patch) | |
| tree | 7986cc6967168923600913e6961d31ad698969be /modules/spanningtree/remoteuser.cpp | |
| parent | Fix swhois sending a NOTE when it should send a FAIL. (diff) | |
Move standard replies to the core and add remote reply support.
Diffstat (limited to 'modules/spanningtree/remoteuser.cpp')
| -rw-r--r-- | modules/spanningtree/remoteuser.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/spanningtree/remoteuser.cpp b/modules/spanningtree/remoteuser.cpp index c6bda5352..a8db87f9f 100644 --- a/modules/spanningtree/remoteuser.cpp +++ b/modules/spanningtree/remoteuser.cpp @@ -36,3 +36,8 @@ void SpanningTree::RemoteUser::WriteRemoteNumeric(const Numeric::Numeric& numeri { CommandNum::Builder(this, numeric).Unicast(this); } + +void SpanningTree::RemoteUser::WriteRemoteReply(const Reply::Reply& reply) +{ + CommandReply::Builder(this, reply).Unicast(this); +} |
