summaryrefslogtreecommitdiffstats
path: root/source/scripting/libjs/management.js
Commit message (Collapse)AuthorAgeFilesLines
* r11781: rename tree to tcons to match the sessions substructure of ↵Stefan Metzmacher2005-11-181-5/+5
| | | | | | smbsrv_connection metze
* r11458: fixed our ejs smbscript interfaces to use arrays where appropriate. InAndrew Tridgell2005-11-021-2/+1
| | | | | | | | js arrays are a special type of object where the length property is automatic, and cannot be modified manually. Our code was manually setting length, which made it abort when someone passed in a real ejs array. To fix this we need to create real arrays instead of objects, and remove the code that manually sets the length
* r8821: continue the trend to move to a more OO style of interface for our jsAndrew Tridgell2005-07-281-15/+10
| | | | | | | | | | | | | | | | calls. This changes the generated RPC and IRPC calls to use the 'this' object pointer instead of requiring the passing of the object on each call. So typical usage is now: var echo = echo_init(); var io = irpcObj(); status = echo.connect("ncacn_np:server"); assert(status.is_ok); io.input.in_data = 7; status = echo.AddOne(io); assert(status.is_ok);
* r8639: moved loadparm calls into an ejs objectAndrew Tridgell2005-07-201-1/+2
|
* r8590: added server status utility functions for checking on the status of a ↵Andrew Tridgell2005-07-191-0/+69
| | | | | | | | | | task via irpc - for stream tasks, returns the number of connections - for non-stream tasks, returns "RUNNING" For both, return "DISABLED" or "NOT RESPONDING" appropriately
* r8584: added --nbt option to smbstatus for nbt server statisticsAndrew Tridgell2005-07-191-0/+21
|
* r8577: added management calls to list current tree connectsAndrew Tridgell2005-07-191-1/+40
|
* r8575: the beginnings of a smbstatus commandAndrew Tridgell2005-07-191-0/+33