1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

r1059: add dcesrv_crypto_schannel_session_info() dummy function.

every backend must implement all functions!

metze
(This used to be commit d62c0661f9234418478873dfc9ba244bdf5c36c0)
This commit is contained in:
Stefan Metzmacher 2004-06-07 07:07:27 +00:00 committed by Gerald (Jerry) Carter
parent bcac502d44
commit 6d5a47aa9b

View File

@ -106,6 +106,16 @@ static NTSTATUS dcesrv_crypto_schannel_update(struct dcesrv_auth *auth, TALLOC_C
return NT_STATUS_OK;
}
/*
get auth_session_info state
*/
static NTSTATUS dcesrv_crypto_schannel_session_info(struct dcesrv_auth *auth, struct auth_session_info **session_info)
{
struct srv_schannel_state *srv_schannel_state = auth->crypto_ctx.private_data;
return NT_STATUS_NOT_IMPLEMENTED;
}
/*
seal a packet
*/
@ -173,6 +183,7 @@ static const struct dcesrv_crypto_ops dcesrv_crypto_schannel_ops = {
.auth_type = DCERPC_AUTH_TYPE_SCHANNEL,
.start = dcesrv_crypto_schannel_start,
.update = dcesrv_crypto_schannel_update,
.session_info = dcesrv_crypto_schannel_session_info,
.seal = dcesrv_crypto_schannel_seal,
.sign = dcesrv_crypto_schannel_sign,
.check_sig = dcesrv_crypto_schannel_check_sig,