summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-09-11 02:56:00 +0200
committerGünther Deschner <gd@samba.org>2009-09-11 03:00:43 +0200
commitc4f6fb0b2d669e9f575f1f25a651d0b7982e7db1 (patch)
treedbac830f719b015787bba75e71392eccaa25ef1b /source3
parentd258fb4d0dcd04899dede7f17c8658251c9cd5e7 (diff)
downloadsamba-c4f6fb0b2d669e9f575f1f25a651d0b7982e7db1.tar.gz
samba-c4f6fb0b2d669e9f575f1f25a651d0b7982e7db1.tar.bz2
samba-c4f6fb0b2d669e9f575f1f25a651d0b7982e7db1.zip
s3-schannel: remove last schannel hand-marshalling function.
Guenther
Diffstat (limited to 'source3')
-rw-r--r--source3/include/proto.h3
-rw-r--r--source3/rpc_parse/parse_rpc.c31
2 files changed, 0 insertions, 34 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index c51d4ee728..865abbf910 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -5728,9 +5728,6 @@ void init_rpc_hdr_auth(RPC_HDR_AUTH *rai,
uint8 auth_pad_len,
uint32 auth_context_id);
bool smb_io_rpc_hdr_auth(const char *desc, RPC_HDR_AUTH *rai, prs_struct *ps, int depth);
-bool smb_io_rpc_auth_schannel_chk(const char *desc, int auth_len,
- RPC_AUTH_SCHANNEL_CHK * chk,
- prs_struct *ps, int depth);
/* The following definitions come from lib/eventlog/eventlog.c */
diff --git a/source3/rpc_parse/parse_rpc.c b/source3/rpc_parse/parse_rpc.c
index 7b0592c20f..eb568b60a3 100644
--- a/source3/rpc_parse/parse_rpc.c
+++ b/source3/rpc_parse/parse_rpc.c
@@ -506,34 +506,3 @@ bool smb_io_rpc_hdr_auth(const char *desc, RPC_HDR_AUTH *rai, prs_struct *ps, in
return True;
}
-
-/*******************************************************************
-reads or writes an RPC_AUTH_SCHANNEL_CHK structure.
-********************************************************************/
-
-bool smb_io_rpc_auth_schannel_chk(const char *desc, int auth_len,
- RPC_AUTH_SCHANNEL_CHK * chk,
- prs_struct *ps, int depth)
-{
- if (chk == NULL)
- return False;
-
- prs_debug(ps, depth, desc, "smb_io_rpc_auth_schannel_chk");
- depth++;
-
- if ( !prs_uint8s(False, "sig ", ps, depth, chk->sig, sizeof(chk->sig)) )
- return False;
-
- if ( !prs_uint8s(False, "seq_num", ps, depth, chk->seq_num, sizeof(chk->seq_num)) )
- return False;
-
- if ( !prs_uint8s(False, "packet_digest", ps, depth, chk->packet_digest, sizeof(chk->packet_digest)) )
- return False;
-
- if ( auth_len == RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN ) {
- if ( !prs_uint8s(False, "confounder", ps, depth, chk->confounder, sizeof(chk->confounder)) )
- return False;
- }
-
- return True;
-}