From 7416dd18894b3e98825294d7a7cb1a6b08f47385 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 2 Dec 2005 15:37:52 +0000 Subject: r12022: add NBTD IRPC proxy calls for wins challenge and wins release demand, used for replication conflicts metze (This used to be commit d7d14cb2bd9823d7e7d81266ca4014ea5263c714) --- source4/librpc/idl/irpc.idl | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'source4/librpc') diff --git a/source4/librpc/idl/irpc.idl b/source4/librpc/idl/irpc.idl index d7a727bee7..f83816f2f2 100644 --- a/source4/librpc/idl/irpc.idl +++ b/source4/librpc/idl/irpc.idl @@ -6,7 +6,7 @@ [ uuid("e770c620-0b06-4b5e-8d87-a26e20f28340"), version(1.0), pointer_default(unique), - depends(security) + depends(security,nbt) ] interface irpc { typedef bitmap { @@ -61,6 +61,22 @@ [out,unique] astring *dcname ); + typedef [noejs] struct { + ipv4address addr; + } nbtd_proxy_wins_addr; + + [noejs] void nbtd_proxy_wins_challenge( + [in] nbt_name name, + [in,out] uint32 num_addrs, + [in,out] nbtd_proxy_wins_addr addrs[num_addrs] + ); + + [noejs] void nbtd_proxy_wins_release_demand( + [in] nbt_name name, + [in] uint32 num_addrs, + [in] nbtd_proxy_wins_addr addrs[num_addrs] + ); + /****************************************************** management calls for the smb server ******************************************************/ -- cgit