diff options
author | Luke Leighton <lkcl@samba.org> | 1999-12-03 22:02:03 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-12-03 22:02:03 +0000 |
commit | c2a3b11b0738f57accafe19c84b682f761fa9631 (patch) | |
tree | 4b9f28894efb7376d2ea987adb791906e5e54076 /source3/include | |
parent | 5db56cfce45b58087fdadeb842f08a5b75d828c9 (diff) | |
download | samba-c2a3b11b0738f57accafe19c84b682f761fa9631.tar.gz samba-c2a3b11b0738f57accafe19c84b682f761fa9631.tar.bz2 samba-c2a3b11b0738f57accafe19c84b682f761fa9631.zip |
starting "connection reuse" system in smb-agent. added version number
which isn't actually used right now :-)
(This used to be commit d54a64ae3ab7cdc1ac67fb49f7255e6a106d624e)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 1 | ||||
-rw-r--r-- | source3/include/smb.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 821a333e54..477ceb1160 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -85,6 +85,7 @@ struct user_credentials struct pwd_info pwd; uint32 ntlmssp_flags; + BOOL reuse; }; struct cli_state diff --git a/source3/include/smb.h b/source3/include/smb.h index ebc0e7ad9e..17da44e75b 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1740,6 +1740,9 @@ struct field_info char *str; }; +#define AGENT_CMD_CON 0 +#define AGENT_CMD_CON_REUSE 1 + #endif /* _SMB_H */ /* _SMB_H */ |