ncp_mount.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp_mount.h
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Volker Lendecke
  5.  *
  6.  */
  7. #ifndef _LINUX_NCP_MOUNT_H
  8. #define _LINUX_NCP_MOUNT_H
  9. #include <linux/types.h>
  10. #include <linux/ncp.h>
  11. #define NCP_MOUNT_VERSION 3
  12. /* Values for flags */
  13. #define NCP_MOUNT_SOFT 0x0001
  14. #define NCP_MOUNT_INTR 0x0002
  15. #define NCP_MOUNT_STRONG 0x0004 /* enable delete/rename of r/o files */
  16. #define NCP_MOUNT_NO_OS2 0x0008 /* do not use OS/2 (LONG) namespace */
  17. #define NCP_MOUNT_NO_NFS 0x0010 /* do not use NFS namespace */
  18. #define NCP_MOUNT_EXTRAS 0x0020
  19. #define NCP_MOUNT_SYMLINKS 0x0040 /* enable symlinks */
  20. struct ncp_mount_data {
  21. int version;
  22. unsigned int ncp_fd; /* The socket to the ncp port */
  23. __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */
  24. __kernel_pid_t wdog_pid; /* Who cares for our watchdog packets? */
  25. unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
  26. unsigned int time_out; /* How long should I wait after
  27.    sending a NCP request? */
  28. unsigned int retry_count; /* And how often should I retry? */
  29. unsigned int flags;
  30. __kernel_uid_t uid;
  31. __kernel_gid_t gid;
  32. __kernel_mode_t file_mode;
  33. __kernel_mode_t dir_mode;
  34. };
  35. #define NCP_MOUNT_VERSION_V4 (4)
  36. struct ncp_mount_data_v4 {
  37. int version;
  38. unsigned long flags; /* NCP_MOUNT_* flags */
  39. /* MIPS uses long __kernel_uid_t, but... */
  40. /* we neever pass -1, so it is safe */
  41. unsigned long mounted_uid; /* Who may umount() this filesystem? */
  42. /* MIPS uses long __kernel_pid_t */
  43. long wdog_pid; /* Who cares for our watchdog packets? */
  44. unsigned int ncp_fd; /* The socket to the ncp port */
  45. unsigned int time_out; /* How long should I wait after
  46.    sending a NCP request? */
  47. unsigned int retry_count; /* And how often should I retry? */
  48. /* MIPS uses long __kernel_uid_t... */
  49. /* we never pass -1, so it is safe */
  50. unsigned long uid;
  51. unsigned long gid;
  52. /* MIPS uses unsigned long __kernel_mode_t */
  53. unsigned long file_mode;
  54. unsigned long dir_mode;
  55. };
  56. #ifdef __KERNEL__
  57. struct ncp_mount_data_kernel {
  58. unsigned long    flags; /* NCP_MOUNT_* flags */
  59. unsigned int  int_flags; /* internal flags */
  60. #define NCP_IMOUNT_LOGGEDIN_POSSIBLE 0x0001
  61. __kernel_uid32_t mounted_uid; /* Who may umount() this filesystem? */
  62. __kernel_pid_t   wdog_pid; /* Who cares for our watchdog packets? */
  63. unsigned int     ncp_fd; /* The socket to the ncp port */
  64. unsigned int     time_out; /* How long should I wait after
  65.    sending a NCP request? */
  66. unsigned int     retry_count; /* And how often should I retry? */
  67. unsigned char  mounted_vol[NCP_VOLNAME_LEN + 1];
  68. __kernel_uid32_t uid;
  69. __kernel_gid32_t gid;
  70. __kernel_mode_t  file_mode;
  71. __kernel_mode_t  dir_mode;
  72. };
  73. #endif /* __KERNEL__ */
  74. #endif