From 043e725035432526bb37417f38edd115fa985b5d Mon Sep 17 00:00:00 2001 From: Brad Arant Date: Mon, 12 Jun 2023 15:15:12 -0700 Subject: [PATCH] added sendToAll on Subscriptions that allows a SessionFilter object to be used to filter the list. --- Subscription.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Subscription.h b/Subscription.h index 3845dd7..c95705d 100644 --- a/Subscription.h +++ b/Subscription.h @@ -33,6 +33,7 @@ namespace core bool subInvite(TCPSession &session); void sendToAll(std::stringstream &data, TCPSession &sender); + void sendToAll(std::stringstream &data, TCPSession &sender, SessionFilter filter); std::string id; std::string mode;