1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/swat/nbt_server/index.esp
Andrew Tridgell fdb322876d r8722: make the menu handling considerably saner and easier to follow. The whole
menu hierarchy is now in /menu.js
(This used to be commit c2a450bb99)
2007-10-10 13:29:59 -05: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(); %>