added a little smbtorture test for dumping the unicode table of a
[ira/wip.git] / source3 / include / client.h
1 /*
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1998
6    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
7    Copyright (C) Jeremy Allison 1998
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef _CLIENT_H
25 #define _CLIENT_H
26
27 /* the client asks for a smaller buffer to save ram and also to get more
28    overlap on the wire. This size gives us a nice read/write size, which
29    will be a multiple of the page size on almost any system */
30 #define CLI_BUFFER_SIZE (0xFFFF)
31
32
33 /*
34  * These definitions depend on smb.h
35  */
36
37 typedef struct file_info
38 {
39         SMB_OFF_T size;
40         uint16 mode;
41         uid_t uid;
42         gid_t gid;
43         /* these times are normally kept in GMT */
44         time_t mtime;
45         time_t atime;
46         time_t ctime;
47         pstring name;
48         char short_name[13*3]; /* the *3 is to cope with multi-byte */
49 } file_info;
50
51 struct print_job_info
52 {
53         uint16 id;
54         uint16 priority;
55         size_t size;
56         fstring user;
57         fstring name;
58         time_t t;
59 };
60
61 struct cli_state {
62         int port;
63         int fd;
64         uint16 cnum;
65         uint16 pid;
66         uint16 mid;
67         uint16 vuid;
68         int protocol;
69         int sec_mode;
70         int rap_error;
71         int privileges;
72
73         fstring eff_name;
74         fstring desthost;
75         fstring user_name;
76         fstring domain;
77
78         /*
79          * The following strings are the
80          * ones returned by the server if
81          * the protocol > NT1.
82          */
83         fstring server_type;
84         fstring server_os;
85         fstring server_domain;
86
87         fstring share;
88         fstring dev;
89         struct nmb_name called;
90         struct nmb_name calling;
91         fstring full_dest_host_name;
92         struct in_addr dest_ip;
93
94         struct pwd_info pwd;
95         unsigned char cryptkey[8];
96         uint32 sesskey;
97         int serverzone;
98         uint32 servertime;
99         int readbraw_supported;
100         int writebraw_supported;
101         int timeout; /* in milliseconds. */
102         int max_xmit;
103         int max_mux;
104         char *outbuf;
105         char *inbuf;
106         int bufsize;
107         int initialised;
108         int win95;
109         uint32 capabilities;
110
111         TALLOC_CTX *mem_ctx;
112
113         /*
114          * Only used in NT domain calls.
115          */
116
117         uint16 nt_pipe_fnum;               /* Pipe handle. */
118         unsigned char sess_key[16];        /* Current session key. */
119         unsigned char ntlmssp_hash[258];   /* ntlmssp data. */
120         uint32 ntlmssp_cli_flgs;           /* ntlmssp client flags */
121         uint32 ntlmssp_srv_flgs;           /* ntlmssp server flags */
122         uint32 ntlmssp_seq_num;            /* ntlmssp sequence number */
123         DOM_CRED clnt_cred;                /* Client credential. */
124         fstring mach_acct;                 /* MYNAME$. */
125         fstring srv_name_slash;            /* \\remote server. */
126         fstring clnt_name_slash;           /* \\local client. */
127         uint16 max_xmit_frag;
128         uint16 max_recv_frag;
129         vuser_key key;
130         uint32 ntlmssp_flags;
131
132         BOOL use_oplocks; /* should we use oplocks? */
133         BOOL use_level_II_oplocks; /* should we use level II oplocks? */
134
135         /* a oplock break request handler */
136         BOOL (*oplock_handler)(struct cli_state *cli, int fnum, unsigned char level);
137 };
138
139 #endif /* _CLIENT_H */