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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp.h
  3.  *
  4.  *  Copyright (C) 1995 by Volker Lendecke
  5.  *  Modified for sparc by J.F. Chadima
  6.  *  Modified for __constant_ntoh by Frank A. Vorstenbosch
  7.  *
  8.  */
  9. #ifndef _LINUX_NCP_H
  10. #define _LINUX_NCP_H
  11. #include <linux/types.h>
  12. #define NCP_PTYPE                (0x11)
  13. #define NCP_PORT                 (0x0451)
  14. #define NCP_ALLOC_SLOT_REQUEST   (0x1111)
  15. #define NCP_REQUEST              (0x2222)
  16. #define NCP_DEALLOC_SLOT_REQUEST (0x5555)
  17. struct ncp_request_header {
  18. __u16 type __attribute__((packed));
  19. __u8 sequence __attribute__((packed));
  20. __u8 conn_low __attribute__((packed));
  21. __u8 task __attribute__((packed));
  22. __u8 conn_high __attribute__((packed));
  23. __u8 function __attribute__((packed));
  24. __u8 data[0] __attribute__((packed));
  25. };
  26. #define NCP_REPLY                (0x3333)
  27. #define NCP_POSITIVE_ACK         (0x9999)
  28. struct ncp_reply_header {
  29. __u16 type __attribute__((packed));
  30. __u8 sequence __attribute__((packed));
  31. __u8 conn_low __attribute__((packed));
  32. __u8 task __attribute__((packed));
  33. __u8 conn_high __attribute__((packed));
  34. __u8 completion_code __attribute__((packed));
  35. __u8 connection_state __attribute__((packed));
  36. __u8 data[0] __attribute__((packed));
  37. };
  38. #define NCP_VOLNAME_LEN (16)
  39. #define NCP_NUMBER_OF_VOLUMES (64)
  40. struct ncp_volume_info {
  41. __u32 total_blocks;
  42. __u32 free_blocks;
  43. __u32 purgeable_blocks;
  44. __u32 not_yet_purgeable_blocks;
  45. __u32 total_dir_entries;
  46. __u32 available_dir_entries;
  47. __u8 sectors_per_block;
  48. char volume_name[NCP_VOLNAME_LEN + 1];
  49. };
  50. #define AR_READ      (ntohs(0x0100))
  51. #define AR_WRITE     (ntohs(0x0200))
  52. #define AR_EXCLUSIVE (ntohs(0x2000))
  53. #define NCP_FILE_ID_LEN 6
  54. /* Defines for Name Spaces */
  55. #define NW_NS_DOS     0
  56. #define NW_NS_MAC     1
  57. #define NW_NS_NFS     2
  58. #define NW_NS_FTAM    3
  59. #define NW_NS_OS2     4
  60. /*  Defines for ReturnInformationMask */
  61. #define RIM_NAME       (ntohl(0x01000000L))
  62. #define RIM_SPACE_ALLOCATED   (ntohl(0x02000000L))
  63. #define RIM_ATTRIBUTES       (ntohl(0x04000000L))
  64. #define RIM_DATA_SIZE       (ntohl(0x08000000L))
  65. #define RIM_TOTAL_SIZE       (ntohl(0x10000000L))
  66. #define RIM_EXT_ATTR_INFO     (ntohl(0x20000000L))
  67. #define RIM_ARCHIVE       (ntohl(0x40000000L))
  68. #define RIM_MODIFY       (ntohl(0x80000000L))
  69. #define RIM_CREATION       (ntohl(0x00010000L))
  70. #define RIM_OWNING_NAMESPACE  (ntohl(0x00020000L))
  71. #define RIM_DIRECTORY       (ntohl(0x00040000L))
  72. #define RIM_RIGHTS       (ntohl(0x00080000L))
  73. #define RIM_ALL        (ntohl(0xFF0F0000L))
  74. #define RIM_COMPRESSED_INFO   (ntohl(0x00000080L))
  75. /* open/create modes */
  76. #define OC_MODE_OPEN   0x01
  77. #define OC_MODE_TRUNCATE  0x02
  78. #define OC_MODE_REPLACE   0x02
  79. #define OC_MODE_CREATE   0x08
  80. /* open/create results */
  81. #define OC_ACTION_NONE    0x00
  82. #define OC_ACTION_OPEN    0x01
  83. #define OC_ACTION_CREATE   0x02
  84. #define OC_ACTION_TRUNCATE 0x04
  85. #define OC_ACTION_REPLACE  0x04
  86. /* access rights attributes */
  87. #ifndef AR_READ_ONLY
  88. #define AR_READ_ONLY    0x0001
  89. #define AR_WRITE_ONLY    0x0002
  90. #define AR_DENY_READ    0x0004
  91. #define AR_DENY_WRITE    0x0008
  92. #define AR_COMPATIBILITY   0x0010
  93. #define AR_WRITE_THROUGH   0x0040
  94. #define AR_OPEN_COMPRESSED 0x0100
  95. #endif
  96. struct nw_info_struct {
  97. __u32 spaceAlloc __attribute__((packed));
  98. __u32 attributes __attribute__((packed));
  99. __u16 flags __attribute__((packed));
  100. __u32 dataStreamSize __attribute__((packed));
  101. __u32 totalStreamSize __attribute__((packed));
  102. __u16 numberOfStreams __attribute__((packed));
  103. __u16 creationTime __attribute__((packed));
  104. __u16 creationDate __attribute__((packed));
  105. __u32 creatorID __attribute__((packed));
  106. __u16 modifyTime __attribute__((packed));
  107. __u16 modifyDate __attribute__((packed));
  108. __u32 modifierID __attribute__((packed));
  109. __u16 lastAccessDate __attribute__((packed));
  110. __u16 archiveTime __attribute__((packed));
  111. __u16 archiveDate __attribute__((packed));
  112. __u32 archiverID __attribute__((packed));
  113. __u16 inheritedRightsMask __attribute__((packed));
  114. __u32 dirEntNum __attribute__((packed));
  115. __u32 DosDirNum __attribute__((packed));
  116. __u32 volNumber __attribute__((packed));
  117. __u32 EADataSize __attribute__((packed));
  118. __u32 EAKeyCount __attribute__((packed));
  119. __u32 EAKeySize __attribute__((packed));
  120. __u32 NSCreator __attribute__((packed));
  121. __u8 nameLen __attribute__((packed));
  122. __u8 entryName[256] __attribute__((packed));
  123. };
  124. /* modify mask - use with MODIFY_DOS_INFO structure */
  125. #define DM_ATTRIBUTES   (ntohl(0x02000000L))
  126. #define DM_CREATE_DATE   (ntohl(0x04000000L))
  127. #define DM_CREATE_TIME   (ntohl(0x08000000L))
  128. #define DM_CREATOR_ID   (ntohl(0x10000000L))
  129. #define DM_ARCHIVE_DATE    (ntohl(0x20000000L))
  130. #define DM_ARCHIVE_TIME    (ntohl(0x40000000L))
  131. #define DM_ARCHIVER_ID   (ntohl(0x80000000L))
  132. #define DM_MODIFY_DATE   (ntohl(0x00010000L))
  133. #define DM_MODIFY_TIME   (ntohl(0x00020000L))
  134. #define DM_MODIFIER_ID   (ntohl(0x00040000L))
  135. #define DM_LAST_ACCESS_DATE   (ntohl(0x00080000L))
  136. #define DM_INHERITED_RIGHTS_MASK  (ntohl(0x00100000L))
  137. #define DM_MAXIMUM_SPACE   (ntohl(0x00200000L))
  138. struct nw_modify_dos_info {
  139. __u32 attributes __attribute__((packed));
  140. __u16 creationDate __attribute__((packed));
  141. __u16 creationTime __attribute__((packed));
  142. __u32 creatorID __attribute__((packed));
  143. __u16 modifyDate __attribute__((packed));
  144. __u16 modifyTime __attribute__((packed));
  145. __u32 modifierID __attribute__((packed));
  146. __u16 archiveDate __attribute__((packed));
  147. __u16 archiveTime __attribute__((packed));
  148. __u32 archiverID __attribute__((packed));
  149. __u16 lastAccessDate __attribute__((packed));
  150. __u16 inheritanceGrantMask __attribute__((packed));
  151. __u16 inheritanceRevokeMask __attribute__((packed));
  152. __u32 maximumSpace __attribute__((packed));
  153. };
  154. struct nw_search_sequence {
  155. __u8 volNumber __attribute__((packed));
  156. __u32 dirBase __attribute__((packed));
  157. __u32 sequence __attribute__((packed));
  158. };
  159. #endif /* _LINUX_NCP_H */