diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-15 12:46:59 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-24 19:02:30 +0100 |
commit | 349977e1a071137ca33b831660e8c65c2e580b5f (patch) | |
tree | 2f63a6579b4447e58a452d23c1eb7d406abd6016 /source3/include | |
parent | 84806eceb2d39e2c66d22fd608d47adb51a9c8fb (diff) | |
download | samba-349977e1a071137ca33b831660e8c65c2e580b5f.tar.gz samba-349977e1a071137ca33b831660e8c65c2e580b5f.tar.bz2 samba-349977e1a071137ca33b831660e8c65c2e580b5f.zip |
s3:smb2cli: replace smb2cli_base.c code with the more generic smbXcli_base.c code
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 293138d574..cbe79134f0 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -37,6 +37,8 @@ struct print_job_info { time_t t; }; +struct smbXcli_conn; + struct cli_state { /** * A list of subsidiary connections for DFS. @@ -159,7 +161,8 @@ struct cli_state { } smb1; struct { - uint64_t mid; + struct smbXcli_conn *conn; + uint32_t pid; uint32_t tid; uint64_t uid; |