]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:librpc/idl: remove unused legacy copy of winbind.idl
authorStefan Metzmacher <metze@samba.org>
Fri, 21 Mar 2025 17:06:25 +0000 (18:06 +0100)
committerRalph Boehme <slow@samba.org>
Thu, 3 Apr 2025 09:36:31 +0000 (09:36 +0000)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source4/librpc/idl/winbind.idl [deleted file]

diff --git a/source4/librpc/idl/winbind.idl b/source4/librpc/idl/winbind.idl
deleted file mode 100644 (file)
index f79eba7..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-  winbind IRPC interface
-*/
-
-#include "idl_types.h"
-
-import "netlogon.idl";
-
-[
-  uuid("b875118e-47a3-4210-b5f7-c240cce656b2"),
-  version(1.0),
-  pointer_default(unique)
-]
-interface winbind
-{
-       typedef [switch_type(uint16)] union netr_LogonLevel netr_LogonLevel;
-       typedef [switch_type(uint16)] union netr_Validation netr_Validation;
-
-       /*
-        * do a netr_LogonSamLogon() against the right DC
-        */
-       NTSTATUS winbind_SamLogon(
-               [in]  uint16 logon_level,
-               [in]  [switch_is(logon_level)] netr_LogonLevel logon,
-               [in]  uint16 validation_level,
-               [out] [switch_is(validation_level)] netr_Validation validation,
-               [out] uint8 authoritative
-       );
-
-       NTSTATUS winbind_DsrUpdateReadOnlyServerDnsRecords(
-               [in,unique] [string,charset(UTF16)] uint16 *site_name,
-               [in] uint32 dns_ttl,
-               [in,out,ref] NL_DNS_NAME_INFO_ARRAY *dns_names
-               );
-}