mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
fdb322876d
menu hierarchy is now in /menu.js
(This used to be commit c2a450bb99
)
25 lines
387 B
Plaintext
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(); %>
|