From f48dec6f5c455a4378eb6bd66959096aa758cd99 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 --- source/scripting/ejs/ejsnet/net_ctx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/scripting/ejs/ejsnet/net_ctx.c b/source/scripting/ejs/ejsnet/net_ctx.c index 1c70dc107f4..e98ba59aeec 100644 --- a/source/scripting/ejs/ejsnet/net_ctx.c +++ b/source/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