mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
7e671ae37f
metze
(This used to be commit bf852a3dbe
)
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(); %>
|