smb.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  smb.h
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
  5.  *  Copyright (C) 1997 by Volker Lendecke
  6.  *
  7.  */
  8. #ifndef _LINUX_SMB_H
  9. #define _LINUX_SMB_H
  10. #include <linux/types.h>
  11. enum smb_protocol { 
  12. SMB_PROTOCOL_NONE, 
  13. SMB_PROTOCOL_CORE, 
  14. SMB_PROTOCOL_COREPLUS, 
  15. SMB_PROTOCOL_LANMAN1, 
  16. SMB_PROTOCOL_LANMAN2, 
  17. SMB_PROTOCOL_NT1 
  18. };
  19. enum smb_case_hndl {
  20. SMB_CASE_DEFAULT,
  21. SMB_CASE_LOWER,
  22. SMB_CASE_UPPER
  23. };
  24. struct smb_dskattr {
  25.         __u16 total;
  26.         __u16 allocblocks;
  27.         __u16 blocksize;
  28.         __u16 free;
  29. };
  30. struct smb_conn_opt {
  31.         /* The socket */
  32. unsigned int fd;
  33. enum smb_protocol protocol;
  34. enum smb_case_hndl case_handling;
  35. /* Connection-Options */
  36. __u32              max_xmit;
  37. __u16              server_uid;
  38. __u16              tid;
  39.         /* The following are LANMAN 1.0 options */
  40.         __u16              secmode;
  41.         __u16              maxmux;
  42.         __u16              maxvcs;
  43.         __u16              rawmode;
  44.         __u32              sesskey;
  45. /* The following are NT LM 0.12 options */
  46. __u32              maxraw;
  47. __u32              capabilities;
  48. __s16              serverzone;
  49. };
  50. #ifdef __KERNEL__
  51. #define SMB_NLS_MAXNAMELEN 20
  52. struct smb_nls_codepage {
  53. char local_name[SMB_NLS_MAXNAMELEN];
  54. char remote_name[SMB_NLS_MAXNAMELEN];
  55. };
  56. #define SMB_MAXNAMELEN 255
  57. #define SMB_MAXPATHLEN 1024
  58. /*
  59.  * Contains all relevant data on a SMB networked file.
  60.  */
  61. struct smb_fattr {
  62. __u16 attr;
  63. unsigned long f_ino;
  64. umode_t f_mode;
  65. nlink_t f_nlink;
  66. uid_t f_uid;
  67. gid_t f_gid;
  68. kdev_t f_rdev;
  69. off_t f_size;
  70. time_t f_atime;
  71. time_t f_mtime;
  72. time_t f_ctime;
  73. unsigned long f_blksize;
  74. unsigned long f_blocks;
  75. };
  76. enum smb_conn_state {
  77. CONN_VALID, /* everything's fine */
  78. CONN_INVALID, /* Something went wrong, but did not
  79.    try to reconnect yet. */
  80. CONN_RETRIED, /* Tried a reconnection, but was refused */
  81. CONN_RETRYING /* Currently trying to reconnect */
  82. };
  83. #define SMB_SUPER_MAGIC               0x517B
  84. #define SMB_HEADER_LEN   37     /* includes everything up to, but not
  85.                                  * including smb_bcc */
  86. #define SMB_INITIAL_PACKET_SIZE 4000
  87. #define SMB_MAX_PACKET_SIZE 32768
  88. /* reserve this much space for trans2 parameters. Shouldn't have to be more
  89.    than 10 or so, but OS/2 seems happier like this. */
  90. #define SMB_TRANS2_MAX_PARAM 64
  91. #endif
  92. #endif