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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ncp_fs_sb.h
  3.  *
  4.  *  Copyright (C) 1995, 1996 by Volker Lendecke
  5.  *
  6.  */
  7. #ifndef _NCP_FS_SB
  8. #define _NCP_FS_SB
  9. #include <linux/types.h>
  10. #include <linux/ncp_mount.h>
  11. #ifdef __KERNEL__
  12. #define NCP_DEFAULT_OPTIONS 0 /* 2 for packet signatures */
  13. struct ncp_server {
  14. struct ncp_mount_data_kernel m; /* Nearly all of the mount data is of
  15.    interest for us later, so we store
  16.    it completely. */
  17. __u8 name_space[NCP_NUMBER_OF_VOLUMES + 2];
  18. struct file *ncp_filp; /* File pointer to ncp socket */
  19. u8 sequence;
  20. u8 task;
  21. u16 connection; /* Remote connection number */
  22. u8 completion; /* Status message from server */
  23. u8 conn_status; /* Bit 4 = 1 ==> Server going down, no
  24.    requests allowed anymore.
  25.    Bit 0 = 1 ==> Server is down. */
  26. int buffer_size; /* Negotiated bufsize */
  27. int reply_size; /* Size of last reply */
  28. int packet_size;
  29. unsigned char *packet; /* Here we prepare requests and
  30.    receive replies */
  31. int lock; /* To prevent mismatch in protocols. */
  32. struct semaphore sem;
  33. int current_size; /* for packet preparation */
  34. int has_subfunction;
  35. int ncp_reply_size;
  36. int root_setuped;
  37. /* info for packet signing */
  38. int sign_wanted; /* 1=Server needs signed packets */
  39. int sign_active; /* 0=don't do signing, 1=do */
  40. char sign_root[8]; /* generated from password and encr. key */
  41. char sign_last[16];
  42. /* Authentication info: NDS or BINDERY, username */
  43. struct {
  44. int auth_type;
  45. size_t object_name_len;
  46. void* object_name;
  47. int object_type;
  48. } auth;
  49. /* Password info */
  50. struct {
  51. size_t len;
  52. void* data;
  53. } priv;
  54. /* nls info: codepage for volume and charset for I/O */
  55. struct nls_table *nls_vol;
  56. struct nls_table *nls_io;
  57. /* maximum age in jiffies */
  58. int dentry_ttl;
  59. /* miscellaneous */
  60. unsigned int flags;
  61. };
  62. #define ncp_sb_info ncp_server
  63. #define NCP_FLAG_UTF8 1
  64. #define NCP_CLR_FLAG(server, flag) ((server)->flags &= ~(flag))
  65. #define NCP_SET_FLAG(server, flag) ((server)->flags |= (flag))
  66. #define NCP_IS_FLAG(server, flag) ((server)->flags & (flag))
  67. static inline int ncp_conn_valid(struct ncp_server *server)
  68. {
  69. return ((server->conn_status & 0x11) == 0);
  70. }
  71. static inline void ncp_invalidate_conn(struct ncp_server *server)
  72. {
  73. server->conn_status |= 0x01;
  74. }
  75. #endif /* __KERNEL__ */
  76. #endif
  77.