|
Lines 33-39
Link Here
|
| 33 |
*/ |
33 |
*/ |
| 34 |
|
34 |
|
| 35 |
/* |
35 |
/* |
| 36 |
* Common definintions and structures for SMB/CIFS protocol |
36 |
* Common definitions and structures for SMB/CIFS protocol |
| 37 |
*/ |
37 |
*/ |
| 38 |
|
38 |
|
| 39 |
#ifndef _NETSMB_SMB_H_ |
39 |
#ifndef _NETSMB_SMB_H_ |
|
Lines 97-103
Link Here
|
| 97 |
* Security mode bits |
97 |
* Security mode bits |
| 98 |
*/ |
98 |
*/ |
| 99 |
#define SMB_SM_USER 0x01 /* server in the user security mode */ |
99 |
#define SMB_SM_USER 0x01 /* server in the user security mode */ |
| 100 |
#define SMB_SM_ENCRYPT 0x02 /* use challenge/responce */ |
100 |
#define SMB_SM_ENCRYPT 0x02 /* use challenge/response */ |
| 101 |
|
101 |
|
| 102 |
/* |
102 |
/* |
| 103 |
* NTLM capabilities |
103 |
* NTLM capabilities |
|
Lines 336-342
Link Here
|
| 336 |
#define ERRqfull 49 /* Print queue full */ |
336 |
#define ERRqfull 49 /* Print queue full */ |
| 337 |
#define ERRqtoobig 50 /* Print queue full - no space */ |
337 |
#define ERRqtoobig 50 /* Print queue full - no space */ |
| 338 |
#define ERRinvpfid 52 /* Invalid print file FID */ |
338 |
#define ERRinvpfid 52 /* Invalid print file FID */ |
| 339 |
#define ERRsmbcmd 64 /* The server did not recognise the command */ |
339 |
#define ERRsmbcmd 64 /* The server did not recognize the command */ |
| 340 |
#define ERRsrverror 65 /* The server encountered and internal error */ |
340 |
#define ERRsrverror 65 /* The server encountered and internal error */ |
| 341 |
#define ERRfilespecs 67 /* The Fid and path name contains an invalid combination */ |
341 |
#define ERRfilespecs 67 /* The Fid and path name contains an invalid combination */ |
| 342 |
#define ERRbadpermits 69 /* Access mode invalid */ |
342 |
#define ERRbadpermits 69 /* Access mode invalid */ |
|
Lines 350-356
Link Here
|
| 350 |
#define ERRtoomanyuids 90 /* Too many UIDs active on this session */ |
350 |
#define ERRtoomanyuids 90 /* Too many UIDs active on this session */ |
| 351 |
#define ERRbaduid 91 /* The UID is not known in this session */ |
351 |
#define ERRbaduid 91 /* The UID is not known in this session */ |
| 352 |
#define ERRusempx 250 /* Temporarily unable to support Raw, use MPX mode */ |
352 |
#define ERRusempx 250 /* Temporarily unable to support Raw, use MPX mode */ |
| 353 |
#define ERRusestd 251 /* Temporarily unable to support Raw, use stdandard r/w */ |
353 |
#define ERRusestd 251 /* Temporarily unable to support Raw, use standard r/w */ |
| 354 |
#define ERRcontmpx 252 /* Continue in MPX mode */ |
354 |
#define ERRcontmpx 252 /* Continue in MPX mode */ |
| 355 |
#define ERRnosupport 65535 /* Invalid function */ |
355 |
#define ERRnosupport 65535 /* Invalid function */ |
| 356 |
|
356 |
|