[GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.
[jerry/samba.git] / source / winbindd / winbindd.h
index d61254af4a27124787053afe9b2adfe7137ccb74..ebede0f0076987a6ea0dba4a12eb3f1a62a28abe 100644 (file)
@@ -134,17 +134,6 @@ struct winbindd_async_request;
 
 /* Async child */
 
-struct winbindd_domain;
-
-struct winbindd_child_dispatch_table {
-       enum winbindd_cmd cmd;
-       enum winbindd_result (*fn)(struct winbindd_domain *domain,
-                                  struct winbindd_cli_state *state);
-       const char *winbindd_cmd_name;
-};
-
-extern const struct winbindd_child_dispatch_table domain_dispatch_table[];
-
 struct winbindd_child {
        struct winbindd_child *next, *prev;
 
@@ -155,8 +144,6 @@ struct winbindd_child {
        struct fd_event event;
        struct timed_event *lockout_policy_event;
        struct winbindd_async_request *requests;
-
-       const struct winbindd_child_dispatch_table *table;
 };
 
 /* Structures to hold per domain information */
@@ -178,14 +165,6 @@ struct winbindd_domain {
        time_t startup_time;                   /* When we set "startup" true. */
        BOOL startup;                          /* are we in the first 30 seconds after startup_time ? */
 
-       BOOL can_do_samlogon_ex; /* Due to the lack of finer control what type
-                                 * of DC we have, let us try to do a
-                                 * credential-chain less samlogon_ex call
-                                 * with AD and schannel. If this fails with
-                                 * DCERPC_FAULT_OP_RNG_ERROR, then set this
-                                 * to False. This variable is around so that
-                                 * we don't have to try _ex every time. */
-
        /* Lookup methods for this domain (LDAP or RPC) */
        struct winbindd_methods *methods;