Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
李勇
/
McuClient
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
李勇
8 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
44baa20634a1c1dece5bf0ccdc628f3fd0ccc02a
44baa206
1 parent
963085da
人员信息中增加ms列表数据
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
23 行增加
和
3 行删除
dist/McuClient.js
src/EngineEntrance.js
src/apes/ConferApe.js
src/pdus/pro.js
dist/McuClient.js
查看文件 @
44baa20
此 diff 太大无法显示。
src/EngineEntrance.js
查看文件 @
44baa20
...
...
@@ -28,7 +28,7 @@ import MediaModule from 'apes/MediaModule';
import
UTF8
from
'utf-8'
;
let
loger
=
Loger
.
getLoger
(
'McuClient'
);
let
_sdkInfo
=
{
"version"
:
"v1.2
3.5.201705023
"
,
"author"
:
"www.3mang.com"
};
let
_sdkInfo
=
{
"version"
:
"v1.2
4.0.201705024
"
,
"author"
:
"www.3mang.com"
};
//APE
let
_sass
;
...
...
src/apes/ConferApe.js
查看文件 @
44baa20
...
...
@@ -119,7 +119,20 @@ class ConferApe extends Ape {
nodeInfoRecordPdu
.
province
=
GlobalConfig
.
province
;
//服务商
nodeInfoRecordPdu
.
isp
=
GlobalConfig
.
isp
;
//服务商
//用户的MS列表
let
msListAll
=
GlobalConfig
.
msListAll
;
for
(
let
k
=
0
;
k
<
msListAll
.
length
;
k
++
){
let
msItem
=
msListAll
[
k
];
if
(
msItem
){
let
msListItemPdu
=
new
pdu
[
'MsListItemPdu'
];
msListItemPdu
.
ip
=
msItem
.
ip
||
""
;
msListItemPdu
.
port
=
msItem
.
port
||
""
;
msListItemPdu
.
country
=
msItem
.
country
||
""
;
msListItemPdu
.
province
=
msItem
.
province
||
""
;
msListItemPdu
.
city
=
msItem
.
city
||
""
;
nodeInfoRecordPdu
.
msList
.
push
(
msListItemPdu
);
}
}
return
nodeInfoRecordPdu
;
}
...
...
src/pdus/pro.js
查看文件 @
44baa20
...
...
@@ -833,7 +833,13 @@ message RCVideoDeviceInfoRecordPdu {
required
uint32
device_id
=
1
;
required
string
device_name
=
2
;
}
message
MsListItemPdu
{
optional
string
ip
=
1
;
optional
string
port
=
2
;
optional
string
country
=
3
;
optional
string
province
=
4
;
optional
string
city
=
5
;
}
message
RCNodeInfoRecordPdu
{
required
uint32
node_id
=
1
;
required
string
name
=
2
;
...
...
@@ -863,6 +869,7 @@ message RCNodeInfoRecordPdu {
optional
string
city
=
26
;
optional
string
province
=
27
;
optional
string
isp
=
28
;
repeated
MsListItemPdu
msList
=
29
;
}
message
RCVotingPollSettingsPdu
{
...
...
请
注册
或
登录
后发表评论