blob: b4c0772cb64f09e4922565dee2a6c1a27023a67d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
var Network = {
plugin : null,
ownMac : "",
ownGw : "",
isInited: false
};
Network.init = function () {
this.plugin = document.getElementById("pluginNetwork");
try {
var nw_type = this.plugin.GetActiveType();
if ((nw_type == 0) || (nw_type == 1)) {
this.ownMac = this.plugin.GetMAC(nw_type);
this.ownGw = this.plugin.GetGateway(nw_type);
}
Main.log( "ownMac= " + this.ownMac);
Main.log ("ownGw= " + this.ownGw);
this.isInited = true;
}
catch (e) {
// Code for Non Samsung SmartTV here
}
} ;
Network.getMac = function () {
return this.ownMac;
};
Network.getGateway = function () {
return this.ownGw;
};
|