diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-05-05 18:12:07 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-08 01:22:17 +0200 |
commit | a0cf7bae60fed5a30a16a99697f74b431456029e (patch) | |
tree | 39fbe4123cfa7cd3315c234cbde261edab0e5a85 /source3/include | |
parent | 8dc7029561b4d2e02b1f12583b7b871fd4d2ba14 (diff) | |
download | samba-a0cf7bae60fed5a30a16a99697f74b431456029e.tar.gz samba-a0cf7bae60fed5a30a16a99697f74b431456029e.tar.bz2 samba-a0cf7bae60fed5a30a16a99697f74b431456029e.zip |
s3:libsmb: add basic smb2 client infrastructure
Based on the initial patch from Volker Lendecke <vl@samba.org>.
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 { |