From a0cf7bae60fed5a30a16a99697f74b431456029e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 5 May 2011 18:12:07 +0200 Subject: s3:libsmb: add basic smb2 client infrastructure Based on the initial patch from Volker Lendecke . metze --- source3/include/client.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source3/include') diff --git a/source3/include/client.h b/source3/include/client.h index 6486c76f83..e94c63e51f 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -139,6 +139,13 @@ struct cli_state { struct tevent_queue *outgoing; struct tevent_req **pending; + + struct { + uint64_t mid; + uint32_t pid; + uint32_t tid; + uint64_t uid; + } smb2; }; struct file_info { -- cgit