1296b0337069c670a0e3d4b37c7da647e2135e92
[jpeach/samba.git] / source / 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 /* clistr flags - see clistr.c */
34 #define CLISTR_TERMINATE 1
35 #define CLISTR_CONVERT 2
36 #define CLISTR_UPPER 4
37 #define CLISTR_ASCII 8
38
39 /*
40  * These definitions depend on smb.h
41  */
42
43 typedef struct file_info
44 {
45         SMB_OFF_T size;
46         uint16 mode;
47         uid_t uid;
48         gid_t gid;
49         /* these times are normally kept in GMT */
50         time_t mtime;
51         time_t atime;
52         time_t ctime;
53         pstring name;
54         char short_name[13];
55 } file_info;
56
57 struct print_job_info
58 {
59         uint16 id;
60         uint16 priority;
61         size_t size;
62         fstring user;
63         fstring name;
64         time_t t;
65 };
66
67 struct cli_state {
68         int port;
69         int fd;
70         uint16 cnum;
71         uint16 pid;
72         uint16 mid;
73         uint16 vuid;
74         int protocol;
75         int sec_mode;
76         int rap_error;
77         int privileges;
78
79         fstring eff_name;
80         fstring desthost;
81         fstring user_name;
82         fstring domain;
83
84         /*
85          * The following strings are the
86          * ones returned by the server if
87          * the protocol > NT1.
88          */
89         fstring server_type;
90         fstring server_os;
91         fstring server_domain;
92
93         fstring share;
94         fstring dev;
95         struct nmb_name called;
96         struct nmb_name calling;
97         fstring full_dest_host_name;
98         struct in_addr dest_ip;
99
100         struct pwd_info pwd;
101         unsigned char cryptkey[8];
102         uint32 sesskey;
103         int serverzone;
104         uint32 servertime;
105         int readbraw_supported;
106         int writebraw_supported;
107         int timeout; /* in milliseconds. */
108         int max_xmit;
109         int max_mux;
110         char *outbuf;
111         char *inbuf;
112         int bufsize;
113         int initialised;
114         int win95;
115         uint32 capabilities;
116
117         TALLOC_CTX *mem_ctx;
118
119         /*
120          * Only used in NT domain calls.
121          */
122
123         uint32 nt_error;                   /* NT RPC error code. */
124         uint16 nt_pipe_fnum;               /* Pipe handle. */
125         unsigned char sess_key[16];        /* Current session key. */
126         unsigned char ntlmssp_hash[258];   /* ntlmssp data. */
127         uint32 ntlmssp_cli_flgs;           /* ntlmssp client flags */
128         uint32 ntlmssp_srv_flgs;           /* ntlmssp server flags */
129         uint32 ntlmssp_seq_num;            /* ntlmssp sequence number */
130         DOM_CRED clnt_cred;                /* Client credential. */
131         fstring mach_acct;                 /* MYNAME$. */
132         fstring srv_name_slash;            /* \\remote server. */
133         fstring clnt_name_slash;           /* \\local client. */
134         uint16 max_xmit_frag;
135         uint16 max_recv_frag;
136         vuser_key key;
137         uint32 ntlmssp_flags;
138
139         BOOL use_oplocks; /* should we use oplocks? */
140         BOOL use_level_II_oplocks; /* should we use level II oplocks? */
141 };
142
143 #endif /* _CLIENT_H */