mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
1c170138a8
- make the dcerpc pipe in rpc_connect() a talloc child of the ejs connection variable. That means when the connection variable goes out of scope, the connection is automatically closed. That makes for a more natural interface for closing connections in a scripting language (tpot, you may wish to use mprSetPtrChild() in your smb glue code too)
34 lines
844 B
Makefile
34 lines
844 B
Makefile
#######################
|
|
# Start LIBRARY EJSRPC
|
|
[SUBSYSTEM::EJSRPC]
|
|
OBJ_FILES = \
|
|
scripting/ejs/ejsrpc.o
|
|
REQUIRED_SUBSYSTEMS = RPC_EJS
|
|
NOPROTO = YES
|
|
# End SUBSYSTEM EJSRPC
|
|
#######################
|
|
|
|
#######################
|
|
# Start LIBRARY SMBCALLS
|
|
[SUBSYSTEM::SMBCALLS]
|
|
OBJ_FILES = \
|
|
scripting/ejs/smbcalls.o \
|
|
scripting/ejs/smbcalls_config.o \
|
|
scripting/ejs/smbcalls_ldb.o \
|
|
scripting/ejs/smbcalls_nbt.o \
|
|
scripting/ejs/smbcalls_cli.o \
|
|
scripting/ejs/smbcalls_rpc.o \
|
|
scripting/ejs/mprutil.o
|
|
REQUIRED_SUBSYSTEMS = AUTH EJS LIBBASIC EJSRPC MESSAGING
|
|
# End SUBSYSTEM SMBCALLS
|
|
#######################
|
|
|
|
#######################
|
|
# Start BINARY SMBSCRIPT
|
|
[BINARY::smbscript]
|
|
OBJ_FILES = \
|
|
scripting/ejs/smbscript.o
|
|
REQUIRED_SUBSYSTEMS = EJS LIBBASIC SMBCALLS CONFIG LIBSMB RPC LIBCMDLINE
|
|
# End BINARY SMBSCRIPT
|
|
#######################
|