1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/swat2/nbt_server/index.esp
Stefan Metzmacher 7e671ae37f rename swat => swat2, so that we don't conflict with samba3
metze
(This used to be commit bf852a3dbe)
2008-09-12 08:51:07 +02:00

25 lines
387 B
Plaintext

<% page_header("columns", "NBT Server", "nbt_server");
libinclude("base.js");
libinclude("management.js");
%>
<h1>NBT Server</h1>
<%
writefln("The NBT server is: %s\n", server_status("nbt"));
%>
<h2>Packet statistics</h2>
<%
var stats = nbtd_statistics();
if (stats == undefined) {
writefln("nbt server not running");
} else {
simple_table(stats);
}
%>
<% page_footer(); %>