1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Implement command renegotiate.

This commit is contained in:
Juliusz Chroboczek 2020-12-05 21:02:28 +01:00
parent c6108f08d5
commit 3cbbfbacdd

View file

@ -1809,6 +1809,16 @@ commands.subgroups = {
}
};
commands.renegotiate = {
description: 'renegotiate media streams',
f: (c, r) => {
for(let id in serverConnection.up)
serverConnection.up[id].restartIce();
for(let id in serverConnection.down)
serverConnection.down[id].restartIce();
}
};
/**
* parseCommand splits a string into two space-separated parts. The first
* part may be quoted and may include backslash escapes.