r22208: Print the target principal name, to help with kdc unreachable errors.
[Samba.git] / services / samba / adm.esp
blob8843a068eb70ac53cc263b79e4487f57e6f47ea7
1 <%
3 jsonrpc_include("resources.esp");
5 libinclude("base.js");
6 libinclude("management.js");
8 function _echo(params, error) {
9         var echo_string = params[0];
10         return echo_string;
12 jsonrpc.method.echo = _echo;
14 function _nbt_packet_stats(params, error) {
15         var stats = nbtd_statistics();
16         stats.server_status = new Object();
17         stats.server_status = server_status("nbt");
18         return stats;
20 jsonrpc.method.NBTPacketStats = _nbt_packet_stats;
24  * Local Variables:
25  * mode: c
26  * End:
27  */