2 Unix SMB/CIFS implementation.
3 SMB parameters and setup
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1998
6 Copyright (C) Jeremy Allison 1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #define CLI_BUFFER_SIZE SMB_BUFFER_SIZE_MAX
27 /* default client timeout to 20 seconds on most commands */
28 #define CLIENT_TIMEOUT (20 * 1000)
31 * These definitions depend on smb.h
34 struct print_job_info
{
44 struct smbXcli_session
;
48 * A list of subsidiary connections for DFS.
50 struct cli_state
*prev
, *next
;
52 NTSTATUS raw_status
; /* maybe via NT_STATUS_DOS() */
56 * The following strings are the
57 * ones returned by the server if
67 int timeout
; /* in milliseconds. */
70 /* What the server offered. */
71 uint32_t server_posix_capabilities
;
72 /* What the client requested. */
73 uint32_t requested_posix_capabilities
;
76 /* The list of pipes currently open on this connection. */
77 struct rpc_pipe_client
*pipe_list
;
80 bool fallback_after_kerberos
;
83 bool got_kerberos_mechanism
; /* Server supports krb5 in SPNEGO. */
85 bool use_oplocks
; /* should we use oplocks? */
87 /* Where (if anywhere) this is mounted under DFS. */
90 struct smbXcli_conn
*conn
;
91 const char *remote_realm
;
96 struct smbXcli_session
*session
;
97 struct smbXcli_tcon
*tcon
;
101 struct smbXcli_session
*session
;
102 struct smbXcli_tcon
*tcon
;
103 struct idr_context
*open_handles
;
112 /* these times are normally kept in GMT */
113 struct timespec mtime_ts
;
114 struct timespec atime_ts
;
115 struct timespec ctime_ts
;
120 #define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001
121 #define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
122 #define CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK 0x0004
123 #define CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS 0x0008
124 #define CLI_FULL_CONNECTION_OPLOCKS 0x0010
125 #define CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS 0x0020
126 #define CLI_FULL_CONNECTION_USE_CCACHE 0x0040
127 #define CLI_FULL_CONNECTION_FORCE_DOS_ERRORS 0x0080
128 #define CLI_FULL_CONNECTION_FORCE_ASCII 0x0100
129 #define CLI_FULL_CONNECTION_USE_NT_HASH 0x0200
131 #endif /* _CLIENT_H */