| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
smbsrv_connection
metze
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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);
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
|
|