forked from cory/tildefriends
-t rooms cleanup.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4108 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
@ -785,6 +785,14 @@ bool tf_ssb_verify_and_strip_signature(JSContext* context, JSValue val, char* ou
|
||||
return false;
|
||||
}
|
||||
|
||||
void tf_ssb_close_all(tf_ssb_t* ssb)
|
||||
{
|
||||
for (tf_ssb_connection_t* connection = ssb->connections; connection; connection = connection->next)
|
||||
{
|
||||
_tf_ssb_connection_close(connection, "tf_ssb_close_all");
|
||||
}
|
||||
}
|
||||
|
||||
void tf_ssb_send_close(tf_ssb_t* ssb)
|
||||
{
|
||||
for (tf_ssb_connection_t* connection = ssb->connections; connection; connection = connection->next)
|
||||
|
Reference in New Issue
Block a user