diff options
author | Steve French <sfrench@us.ibm.com> | 2007-09-29 01:21:58 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-09-29 01:21:58 -0400 |
commit | 92ad9b93cd268371d1fc0edbd09383cc1c59be34 (patch) | |
tree | d9e34ab52bd2a6c17c6b93f827814b1fba14e52d /fs/cifs/cifspdu.h | |
parent | 7f8ed420f80c91176dfd27c8089f22cab5c9ba78 (diff) |
[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 e975ce46115d..d2f0cf23bbba 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h | |||
@@ -716,6 +716,14 @@ typedef struct smb_com_findclose_req { | |||
716 | #define REQ_OPENDIRONLY 0x00000008 | 716 | #define REQ_OPENDIRONLY 0x00000008 |
717 | #define REQ_EXTENDED_INFO 0x00000010 | 717 | #define REQ_EXTENDED_INFO 0x00000010 |
718 | 718 | ||
719 | /* File type */ | ||
720 | #define DISK_TYPE 0x0000 | ||
721 | #define BYTE_PIPE_TYPE 0x0001 | ||
722 | #define MESSAGE_PIPE_TYPE 0x0002 | ||
723 | #define PRINTER_TYPE 0x0003 | ||
724 | #define COMM_DEV_TYPE 0x0004 | ||
725 | #define UNKNOWN_TYPE 0xFFFF | ||
726 | |||
719 | typedef struct smb_com_open_req { /* also handles create */ | 727 | typedef struct smb_com_open_req { /* also handles create */ |
720 | struct smb_hdr hdr; /* wct = 24 */ | 728 | struct smb_hdr hdr; /* wct = 24 */ |
721 | __u8 AndXCommand; | 729 | __u8 AndXCommand; |