diff options
-rw-r--r-- | source4/auth/credentials/credentials.h | 9 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/source4/auth/credentials/credentials.h b/source4/auth/credentials/credentials.h index a4fe3f2c305..3c2fb8f2e67 100644 --- a/source4/auth/credentials/credentials.h +++ b/source4/auth/credentials/credentials.h @@ -186,8 +186,17 @@ void cli_credentials_set_kerberos_state(struct cli_credentials *creds, bool cli_credentials_set_domain(struct cli_credentials *cred, const char *val, enum credentials_obtained obtained); +bool cli_credentials_set_domain_callback(struct cli_credentials *cred, + const char *(*domain_cb) (struct cli_credentials *)); bool cli_credentials_set_username(struct cli_credentials *cred, const char *val, enum credentials_obtained obtained); +bool cli_credentials_set_username_callback(struct cli_credentials *cred, + const char *(*username_cb) (struct cli_credentials *)); +bool cli_credentials_set_principal(struct cli_credentials *cred, + const char *val, + enum credentials_obtained obtained); +bool cli_credentials_set_principal_callback(struct cli_credentials *cred, + const char *(*principal_cb) (struct cli_credentials *)); bool cli_credentials_set_password(struct cli_credentials *cred, const char *val, enum credentials_obtained obtained); diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index b2e3a8ce69c..d6619ace07c 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -385,4 +385,6 @@ typedef NTSTATUS (*dcerpc_call_fn) (struct dcerpc_pipe *, TALLOC_CTX *, void *); enum dcerpc_transport_t dcerpc_transport_by_endpoint_protocol(int prot); +const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor); + #endif /* __DCERPC_H__ */ |