summaryrefslogtreecommitdiff
path: root/source4/libcli/smb2/request.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-11 05:53:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:09 -0500
commit555b45e12c281eb3980d15b12728c59c6b73c302 (patch)
tree8d415762a3a319796879d84cc149163dd87199e3 /source4/libcli/smb2/request.c
parent3d38b3dc06f5b9e67fe95d96443fddca66a92797 (diff)
downloadsamba-555b45e12c281eb3980d15b12728c59c6b73c302.tar.gz
samba-555b45e12c281eb3980d15b12728c59c6b73c302.tar.bz2
samba-555b45e12c281eb3980d15b12728c59c6b73c302.zip
r11665: started to put some meat on the structure used for the SMB2 library
the call definitions will be in smb2_calls.h, which will play a similar role that smb_interfaces.h plays for the old SMB protocol (This used to be commit 4ef3902a8a99a0b8caa81a07ba07830d7cbbc32c)
Diffstat (limited to 'source4/libcli/smb2/request.c')
-rw-r--r--source4/libcli/smb2/request.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source4/libcli/smb2/request.c b/source4/libcli/smb2/request.c
index 1b2dc5e64c..e71fc84471 100644
--- a/source4/libcli/smb2/request.c
+++ b/source4/libcli/smb2/request.c
@@ -25,7 +25,6 @@
#include "libcli/smb2/smb2.h"
#include "include/dlinklist.h"
#include "lib/events/events.h"
-#include "librpc/gen_ndr/ndr_misc.h"
/*
initialise a smb2 request
@@ -154,18 +153,3 @@ DATA_BLOB smb2_pull_blob(struct smb2_request *req, uint8_t *ptr, uint_t size)
return data_blob_talloc(req, ptr, size);
}
-/*
- pull a guid from the reply body
-*/
-NTSTATUS smb2_pull_guid(struct smb2_request *req, uint8_t *ptr, struct GUID *guid)
-{
- NTSTATUS status;
- DATA_BLOB blob = smb2_pull_blob(req, ptr, 16);
- if (blob.data == NULL) {
- return NT_STATUS_BUFFER_TOO_SMALL;
- }
- status = ndr_pull_struct_blob(&blob, req, guid,
- (ndr_pull_flags_fn_t)ndr_pull_GUID);
- data_blob_free(&blob);
- return status;
-}