diff options
author | Tim Potter <tpot@samba.org> | 2002-08-23 13:38:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-23 13:38:00 +0000 |
commit | b8dba26978c281259e02b9d6ebacaa7cba4f7787 (patch) | |
tree | 56d9af1ec2c075d76b29bce0ad8bdca7f207904f /source/rpc_client/cli_netlogon.c | |
parent | e13016bb42dbba675d6e7ee7e163543aad2e62c2 (diff) | |
download | samba-b8dba26978c281259e02b9d6ebacaa7cba4f7787.tar.gz samba-b8dba26978c281259e02b9d6ebacaa7cba4f7787.tar.xz samba-b8dba26978c281259e02b9d6ebacaa7cba4f7787.zip |
Moved calculation of secure channel type into a new function.
Diffstat (limited to 'source/rpc_client/cli_netlogon.c')
-rw-r--r-- | source/rpc_client/cli_netlogon.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/rpc_client/cli_netlogon.c b/source/rpc_client/cli_netlogon.c index 60048d189dc..58ba32eb2e6 100644 --- a/source/rpc_client/cli_netlogon.c +++ b/source/rpc_client/cli_netlogon.c @@ -152,6 +152,24 @@ password ?).\n", cli->desthost )); return result; } +/* Return the secure channel type depending on the server role. */ + +uint16 get_sec_chan(void) +{ + uint16 sec_chan = SEC_CHAN_WKSTA; + + switch (lp_server_role()) { + case ROLE_DOMAIN_PDC: + sec_chan = SEC_CHAN_DOMAIN; + break; + case ROLE_DOMAIN_BDC: + sec_chan = SEC_CHAN_BDC; + break; + } + + return sec_chan; +} + /* Initialize domain session credentials */ NTSTATUS cli_nt_setup_creds(struct cli_state *cli, |