mirror of
https://github.com/samba-team/samba.git
synced 2025-02-01 05:47:28 +03:00
a697814eba
MSG_RPC_DUMP_STATUS will be like pool-usage carrying a file descriptor to report status to, the other two are described in rpc_host.idl. NOALIGN on rpc_worker_status: This makes it easier to count bytes to push into a static buffer. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
25 lines
786 B
Python
25 lines
786 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''open_files.idl
|
|
perfcount.idl secrets.idl
|
|
smbXsrv.idl
|
|
leases_db.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''
|
|
libnetapi.idl
|
|
libnet_join.idl
|
|
rpc_host.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr',
|
|
generate_tables=False)
|