r12868: Remove unused code. This has moved to libcli/finddcs.c.
[ira/wip.git] / source / winbind / wb_async_helpers.h
index b37a66e972d7aafd988447a5ad38b2f92428cfb9..2754a8acd6fbd9759e34c71f1fa32759ee938a23 100644 (file)
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
-struct wb_finddcs {
-       struct {
-               struct messaging_context *msg_ctx;
-               const char *domain;
-       } in;
+#include "librpc/gen_ndr/lsa.h"
 
-       struct {
-               int num_dcs;
-               struct nbt_dc_name {
-                       const char *address;
-                       const char *name;
-               } *dcs;
-       } out;
+struct wb_sid_object {
+       enum lsa_SidType type;
+       struct dom_sid *sid;
+       const char *domain;
+       const char *name;
 };
 
-struct wb_get_schannel_creds {
-       struct {
-               struct cli_credentials *creds;
-               struct smbcli_tree *tree;
-       } in;
-       struct {
-               struct dcerpc_pipe *netlogon;
-       } out;
-};