diff options
author | Steve French <sfrench@us.ibm.com> | 2007-09-29 05:21:58 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-09-29 05:21:58 +0000 |
commit | 92ad9b93cd268371d1fc0edbd09383cc1c59be34 (patch) | |
tree | d9e34ab52bd2a6c17c6b93f827814b1fba14e52d /fs/cifs/cifspdu.h | |
parent | 7f8ed420f80c91176dfd27c8089f22cab5c9ba78 (diff) | |
download | linux-3.10-92ad9b93cd268371d1fc0edbd09383cc1c59be34.tar.gz linux-3.10-92ad9b93cd268371d1fc0edbd09383cc1c59be34.tar.bz2 linux-3.10-92ad9b93cd268371d1fc0edbd09383cc1c59be34.zip |
[CIFS] named pipe support (part 2)
Also fixes typo which could cause build break
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifspdu.h')
-rw-r--r-- | fs/cifs/cifspdu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h index e975ce46115..d2f0cf23bbb 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h @@ -716,6 +716,14 @@ typedef struct smb_com_findclose_req { #define REQ_OPENDIRONLY 0x00000008 #define REQ_EXTENDED_INFO 0x00000010 +/* File type */ +#define DISK_TYPE 0x0000 +#define BYTE_PIPE_TYPE 0x0001 +#define MESSAGE_PIPE_TYPE 0x0002 +#define PRINTER_TYPE 0x0003 +#define COMM_DEV_TYPE 0x0004 +#define UNKNOWN_TYPE 0xFFFF + typedef struct smb_com_open_req { /* also handles create */ struct smb_hdr hdr; /* wct = 24 */ __u8 AndXCommand; |