summaryrefslogtreecommitdiff
path: root/source3/smbd/proto.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-08-05 16:49:20 +0200
committerVolker Lendecke <vl@samba.org>2011-08-25 21:36:19 +0200
commitf9ef138ec7a7a6507e0bd9d7d8753027c002b562 (patch)
treef4782ae2759070471d7439421e890990fe1e6154 /source3/smbd/proto.h
parentb4b9918cc80ffae55c0c75a93c229c7a29bbb230 (diff)
downloadsamba-f9ef138ec7a7a6507e0bd9d7d8753027c002b562.tar.gz
samba-f9ef138ec7a7a6507e0bd9d7d8753027c002b562.tar.bz2
samba-f9ef138ec7a7a6507e0bd9d7d8753027c002b562.zip
s3: Pass smbd_server_connection to is_encrypted_packet
Diffstat (limited to 'source3/smbd/proto.h')
-rw-r--r--source3/smbd/proto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h
index 289c012b48..0f4036f574 100644
--- a/source3/smbd/proto.h
+++ b/source3/smbd/proto.h
@@ -937,7 +937,8 @@ void reply_getattrE(struct smb_request *req);
/* The following definitions come from smbd/seal.c */
-bool is_encrypted_packet(const uint8_t *inbuf);
+bool is_encrypted_packet(struct smbd_server_connection *sconn,
+ const uint8_t *inbuf);
void srv_free_enc_buffer(char *buf);
NTSTATUS srv_decrypt_buffer(char *buf);
NTSTATUS srv_encrypt_buffer(char *buf, char **buf_out);