diff options
| author | 2026-06-17 15:37:26 +0100 | |
|---|---|---|
| committer | 2026-06-17 15:39:58 +0100 | |
| commit | 33ab04fef638ab7fb6ec2eeea983b58c7e96c02f (patch) | |
| tree | 6bd4da6a42df3deff3a7f955f56fa22c88f6a6f4 /modules/spanningtree/remoteuser.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
| parent | Allow an event hook for after messages are sent to a client. (diff) | |
Merge branch 'insp4' into master.
Diffstat (limited to 'modules/spanningtree/remoteuser.cpp')
| -rw-r--r-- | modules/spanningtree/remoteuser.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/spanningtree/remoteuser.cpp b/modules/spanningtree/remoteuser.cpp index 8ccb2368f..c478ea57b 100644 --- a/modules/spanningtree/remoteuser.cpp +++ b/modules/spanningtree/remoteuser.cpp @@ -39,6 +39,12 @@ void SpanningTree::RemoteUser::WriteRemoteNumeric(const Numeric::Numeric& numeri CommandNum::Builder(this, numeric).Unicast(this); } +void SpanningTree::RemoteUser::WriteRemoteNumeric(const std::vector<Numeric::Numeric>& numerics) +{ + for (const auto& numeric : numerics) + CommandNum::Builder(this, numeric).Unicast(this); +} + void SpanningTree::RemoteUser::WriteRemoteReply(const Reply::Reply& reply) { CommandReply::Builder(this, reply).Unicast(this); |
