From cb060f8bac4114766a1945c2929a75848d0d7185 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 19 Jul 2005 06:18:48 +0000 Subject: r8584: added --nbt option to smbstatus for nbt server statistics (This used to be commit 26a676a4e3596d34aee391bf132f2525972c81df) --- source4/scripting/libjs/management.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'source4/scripting/libjs') diff --git a/source4/scripting/libjs/management.js b/source4/scripting/libjs/management.js index d989541661..8b04247248 100644 --- a/source4/scripting/libjs/management.js +++ b/source4/scripting/libjs/management.js @@ -70,3 +70,24 @@ function smbsrv_trees() ret.length = count; return ret; } + +/* + return nbtd statistics +*/ +function nbtd_statistics() +{ + var conn = new Object(); + var irpc = irpc_init(); + status = irpc_connect(conn, "nbt_server"); + if (status.is_ok != true) { + return undefined; + } + + var io = irpcObj(); + io.input.level = irpc.NBTD_INFO_STATISTICS; + status = irpc.nbtd_information(conn, io); + if (status.is_ok != true) { + return undefined; + } + return io.results[0].info.stats; +} -- cgit