From b0a1cf01e3cfba45273d636fd759fd2dd254f9d3 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Thu, 24 May 2007 21:45:29 +0000 Subject: r23125: add host manager subcontext function. rafal (This used to be commit 2f16ff04d22e13cfb2dc5d8b69004d969a4c25fb) --- source4/scripting/ejs/ejsnet/net_ctx.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/scripting/ejs') diff --git a/source4/scripting/ejs/ejsnet/net_ctx.c b/source4/scripting/ejs/ejsnet/net_ctx.c index 1c70dc107f..e98ba59aee 100644 --- a/source4/scripting/ejs/ejsnet/net_ctx.c +++ b/source4/scripting/ejs/ejsnet/net_ctx.c @@ -29,6 +29,7 @@ int ejs_net_userman(MprVarHandle eid, int argc, struct MprVar** argv); +int ejs_net_hostman(MprVarHandle eid, int argc, struct MprVar** argv); static int ejs_net_join_domain(MprVarHandle eid, int argc, struct MprVar **argv); static int ejs_net_samsync_ldb(MprVarHandle eid, int argc, struct MprVar **argv); @@ -105,6 +106,7 @@ static int ejs_net_context(MprVarHandle eid, int argc, struct MprVar **argv) /* add methods to the object */ mprSetCFunction(&obj, "UserMgr", ejs_net_userman); + mprSetCFunction(&obj, "HostMgr", ejs_net_hostman); mprSetCFunction(&obj, "JoinDomain", ejs_net_join_domain); mprSetCFunction(&obj, "SamSyncLdb", ejs_net_samsync_ldb); -- cgit