diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 21ad457cb5..43b1541925 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -75,7 +75,6 @@ struct cli_state { int initialised; int win95; bool is_guestlogin; - uint32 capabilities; /* What the server offered. */ uint32_t server_posix_capabilities; /* What the client requested. */ @@ -127,6 +126,18 @@ struct cli_state { uint8_t *inbuf); enum protocol_types protocol; + + struct { + struct { + uint32_t capabilities; + } client; + + struct { + uint32_t capabilities; + } server; + + uint32_t capabilities; + } smb1; } conn; struct { |