summaryrefslogtreecommitdiffstats
path: root/source/lib/dummysmbd.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-01-04 12:56:23 -0800
committerJeremy Allison <jra@samba.org>2008-01-04 12:56:23 -0800
commitc4e5a505043965eec77b5bb9bc60957e8f3b97c8 (patch)
tree83a3a31f447e5fabe3433c3ca5791c881f7aea26 /source/lib/dummysmbd.c
parenta4ef828102417f04af1e9823c89404e77e4fd5c1 (diff)
downloadsamba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.tar.gz
samba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.tar.xz
samba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.zip
Refactor the crypto code after a very helpful conversation
with Volker. Mostly making sure we have data on the incoming packet type, not stored in the smb header. Jeremy.
Diffstat (limited to 'source/lib/dummysmbd.c')
-rw-r--r--source/lib/dummysmbd.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/source/lib/dummysmbd.c b/source/lib/dummysmbd.c
index 464ba923063..dbe886e3d13 100644
--- a/source/lib/dummysmbd.c
+++ b/source/lib/dummysmbd.c
@@ -51,24 +51,3 @@ 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)
-{
- ;
-}
-
-bool srv_encryption_on(void)
-{
- return false;
-}