summaryrefslogtreecommitdiff
path: root/source3/rpc_client/init_netlogon.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-06-25 16:38:39 +0200
committerGünther Deschner <gd@samba.org>2009-06-25 16:46:31 +0200
commit7450f3ad993ba5e9a1204225778222a358761e4a (patch)
treea94bac86a964f023bf8b6d60a2572203fad4683b /source3/rpc_client/init_netlogon.c
parent6a66114f257b251a176d728ef7ba6acecdf6e56c (diff)
downloadsamba-7450f3ad993ba5e9a1204225778222a358761e4a.tar.gz
samba-7450f3ad993ba5e9a1204225778222a358761e4a.tar.bz2
samba-7450f3ad993ba5e9a1204225778222a358761e4a.zip
s3-netlogon: remove remaining netlogon init functions.
Guenther
Diffstat (limited to 'source3/rpc_client/init_netlogon.c')
-rw-r--r--source3/rpc_client/init_netlogon.c83
1 files changed, 0 insertions, 83 deletions
diff --git a/source3/rpc_client/init_netlogon.c b/source3/rpc_client/init_netlogon.c
index 88a18dee07..d197ff74b2 100644
--- a/source3/rpc_client/init_netlogon.c
+++ b/source3/rpc_client/init_netlogon.c
@@ -20,89 +20,6 @@
#include "includes.h"
#include "../libcli/auth/libcli_auth.h"
-/*******************************************************************
- inits a structure.
-********************************************************************/
-
-void init_netr_IdentityInfo(struct netr_IdentityInfo *r,
- const char *domain_name,
- uint32_t parameter_control,
- uint32_t logon_id_low,
- uint32_t logon_id_high,
- const char *account_name,
- const char *workstation)
-{
- init_lsa_String(&r->domain_name, domain_name);
- r->parameter_control = parameter_control;
- r->logon_id_low = logon_id_low;
- r->logon_id_high = logon_id_high;
- init_lsa_String(&r->account_name, account_name);
- init_lsa_String(&r->workstation, workstation);
-}
-
-/*******************************************************************
- inits a structure.
- This is a network logon packet. The log_id parameters
- are what an NT server would generate for LUID once the
- user is logged on. I don't think we care about them.
-
- Note that this has no access to the NT and LM hashed passwords,
- so it forwards the challenge, and the NT and LM responses (24
- bytes each) over the secure channel to the Domain controller
- for it to say yea or nay. This is the preferred method of
- checking for a logon as it doesn't export the password
- hashes to anyone who has compromised the secure channel. JRA.
-
-********************************************************************/
-
-void init_netr_NetworkInfo(struct netr_NetworkInfo *r,
- const char *domain_name,
- uint32_t parameter_control,
- uint32_t logon_id_low,
- uint32_t logon_id_high,
- const char *account_name,
- const char *workstation,
- uint8_t challenge[8],
- struct netr_ChallengeResponse nt,
- struct netr_ChallengeResponse lm)
-{
- init_netr_IdentityInfo(&r->identity_info,
- domain_name,
- parameter_control,
- logon_id_low,
- logon_id_high,
- account_name,
- workstation);
- memcpy(r->challenge, challenge, 8);
- r->nt = nt;
- r->lm = lm;
-}
-
-/*******************************************************************
- inits a structure.
-********************************************************************/
-
-void init_netr_PasswordInfo(struct netr_PasswordInfo *r,
- const char *domain_name,
- uint32_t parameter_control,
- uint32_t logon_id_low,
- uint32_t logon_id_high,
- const char *account_name,
- const char *workstation,
- struct samr_Password lmpassword,
- struct samr_Password ntpassword)
-{
- init_netr_IdentityInfo(&r->identity_info,
- domain_name,
- parameter_control,
- logon_id_low,
- logon_id_high,
- account_name,
- workstation);
- r->lmpassword = lmpassword;
- r->ntpassword = ntpassword;
-}
-
/*************************************************************************
inits a netr_CryptPassword structure
*************************************************************************/