Lines Matching defs:cifs_ses
856 struct cifs_ses { struct
857 struct list_head smb_ses_list;
858 struct list_head tcon_list;
859 struct cifs_tcon *tcon_ipc;
860 struct mutex session_mutex;
861 struct TCP_Server_Info *server; /* pointer to server info */
862 int ses_count; /* reference counter */
863 enum statusEnum status;
864 unsigned overrideSecFlg; /* if non-zero override global sec flags */
865 char *serverOS; /* name of operating system underlying server */
866 char *serverNOS; /* name of network operating system of server */
867 char *serverDomain; /* security realm of server */
868 __u64 Suid; /* remote smb uid */
869 kuid_t linux_uid; /* overriding owner of files on the mount */
870 kuid_t cred_uid; /* owner of credentials */
871 unsigned int capabilities;
872 char serverName[SERVER_NAME_LEN_WITH_NULL];
873 char *user_name; /* must not be null except during init of sess
875 char *domainName;
876 char *password;
877 struct session_key auth_key;
878 struct ntlmssp_auth *ntlmssp; /* ciphertext, flags, server challenge */
879 enum securityEnum sectype; /* what security flavor was specified? */
880 bool sign; /* is signing required? */
881 bool need_reconnect:1; /* connection reset, uid now invalid */
905 cap_unix(struct cifs_ses *ses) in cap_unix() argument