1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

s4:librpc: provide py_schannel bindings

This will be used in the dcerpc.raw_protocol test.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14356

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2020-11-12 10:34:38 +01:00 committed by Andreas Schneider
parent be02d4077d
commit 0acbbeab4d
2 changed files with 8 additions and 1 deletions

View File

@ -98,7 +98,6 @@ bld.SAMBA_PIDL_LIST('PIDL',
ODJ.idl
printcap.idl
rap.idl
schannel.idl
smb2_lease_struct.idl
''',
options='--header --ndr-parser',
@ -135,6 +134,7 @@ bld.SAMBA_PIDL_LIST('PIDL',
idmap.idl
krb5pac.idl
krb5ccache.idl
schannel.idl
messaging.idl
misc.idl
nbt.idl

View File

@ -282,6 +282,13 @@ bld.SAMBA_PYTHON('python_gmsa',
cflags_end=gen_cflags
)
bld.SAMBA_PYTHON('python_schannel',
source='../../librpc/gen_ndr/py_schannel.c',
deps='NDR_SCHANNEL %s %s' % (pytalloc_util, pyrpc_util),
realname='samba/dcerpc/schannel.so',
cflags_end=gen_cflags
)
bld.SAMBA_PYTHON('python_netlogon',
source='../../librpc/gen_ndr/py_netlogon.c',
deps='RPC_NDR_NETLOGON %s %s' % (pytalloc_util, pyrpc_util),