mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
udpate the srs_bwt.
This commit is contained in:
parent
cd0ab5fb43
commit
d91a9dfa9d
7 changed files with 5 additions and 5 deletions
|
@ -63,9 +63,9 @@
|
||||||
bandwidth.on_update_status = function(status) {
|
bandwidth.on_update_status = function(status) {
|
||||||
$("#check_status").text(status);
|
$("#check_status").text(status);
|
||||||
}
|
}
|
||||||
bandwidth.on_srs_info = function(srs_server, srs_primary_authors, srs_id, srs_pid, srs_server_ip) {
|
bandwidth.on_srs_info = function(srs_server, srs_primary, srs_authors, srs_id, srs_pid, srs_server_ip) {
|
||||||
$("#check_info").text(
|
$("#check_info").text(
|
||||||
"server:" + srs_server + ", authors:" + srs_primary_authors +
|
"server:" + srs_server + ", primary:" + srs_primary + ", authors:" + srs_authors +
|
||||||
", srs_id:" + srs_id + ", srs_pid:" + srs_pid + ", ip:" + srs_server_ip
|
", srs_id:" + srs_id + ", srs_pid:" + srs_pid + ", ip:" + srs_server_ip
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
|
@ -139,7 +139,7 @@ package
|
||||||
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
||||||
}
|
}
|
||||||
if (srs_primary != null) {
|
if (srs_primary != null) {
|
||||||
customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary));
|
customItems.push(new ContextMenuItem("Primary: " + srs_primary));
|
||||||
}
|
}
|
||||||
if (srs_authors != null) {
|
if (srs_authors != null) {
|
||||||
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
||||||
|
|
Binary file not shown.
|
@ -282,7 +282,7 @@ package
|
||||||
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
||||||
}
|
}
|
||||||
if (srs_primary != null) {
|
if (srs_primary != null) {
|
||||||
customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary));
|
customItems.push(new ContextMenuItem("Primary: " + srs_primary));
|
||||||
}
|
}
|
||||||
if (srs_authors != null) {
|
if (srs_authors != null) {
|
||||||
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
||||||
|
|
Binary file not shown.
|
@ -148,7 +148,7 @@ package
|
||||||
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
customItems.push(new ContextMenuItem("Server: " + srs_server));
|
||||||
}
|
}
|
||||||
if (srs_primary != null) {
|
if (srs_primary != null) {
|
||||||
customItems.push(new ContextMenuItem("PrimaryAuthors: " + srs_primary));
|
customItems.push(new ContextMenuItem("Primary: " + srs_primary));
|
||||||
}
|
}
|
||||||
if (srs_authors != null) {
|
if (srs_authors != null) {
|
||||||
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
customItems.push(new ContextMenuItem("Authors: " + srs_authors));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue