summaryrefslogtreecommitdiff
path: root/source/lib/dummysmbd.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-03-20 01:17:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:43 -0500
commit60fc9c0aedf42dcd9df2ef9f1df07eaf3bca9bce (patch)
treef1969c916424be05c7b219c2d438ca2c89a79906 /source/lib/dummysmbd.c
parent86a70adb6a2d277f235857451bbee7d530d15310 (diff)
downloadsamba-60fc9c0aedf42dcd9df2ef9f1df07eaf3bca9bce.tar.gz
r21882: The server part of the code has to use an AUTH_NTLMSSP struct,
not just an NTLMSSP - grr. This complicates the re-use of common client and server code but I think I've got it right. Not turned on of valgrinded yet, but you can see it start to take shape ! Jeremy.
Diffstat (limited to 'source/lib/dummysmbd.c')
-rw-r--r--source/lib/dummysmbd.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/lib/dummysmbd.c b/source/lib/dummysmbd.c
index a291a5884d9..6017a129282 100644
--- a/source/lib/dummysmbd.c
+++ b/source/lib/dummysmbd.c
@@ -48,3 +48,18 @@ NTSTATUS can_delete_directory(struct connection_struct *conn,
return NT_STATUS_OK;
}
+NTSTATUS srv_decrypt_buffer(char *buf)
+{
+ return NT_STATUS_OK;
+}
+
+NTSTATUS srv_encrypt_buffer(char *buffer, char **buf_out)
+{
+ *buf_out = buffer;
+ return NT_STATUS_OK;
+}
+
+void srv_free_enc_buffer(char *buf)
+{
+ ;
+}