Lines Matching defs:TCP_Server_Info

533 struct TCP_Server_Info {  struct
534 struct list_head tcp_ses_list;
535 struct list_head smb_ses_list;
536 int srv_count; /* reference counter */
538 char server_RFC1001_name[RFC1001_NAME_LEN_WITH_NULL];
539 struct smb_version_operations *ops;
540 struct smb_version_values *vals;
541 enum statusEnum tcpStatus; /* what we think the status is */
542 char *hostname; /* hostname portion of UNC string */
543 struct socket *ssocket;
544 struct sockaddr_storage dstaddr;
545 struct sockaddr_storage srcaddr; /* locally bind to this IP */
547 struct net *net;
549 wait_queue_head_t response_q;
550 wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/
551 struct list_head pending_mid_q;
552 bool noblocksnd; /* use blocking sendmsg */
553 bool noautotune; /* do not autotune send buf sizes */
554 bool tcp_nodelay;
555 int credits; /* send no more requests at once */
556 unsigned int in_flight; /* number of requests on the wire to server */
557 spinlock_t req_lock; /* protect the two values above */
558 struct mutex srv_mutex;
559 struct task_struct *tsk;
560 char server_GUID[16];
561 __u16 sec_mode;
562 bool sign; /* is signing enabled on this connection? */
563 bool session_estab; /* mark when very first sess is established */
565 int echo_credits; /* echo reserved slots */
566 int oplock_credits; /* oplock break reserved slots */
567 bool echoes:1; /* enable echoes */
568 __u8 client_guid[SMB2_CLIENT_GUID_SIZE]; /* Client GUID */
570 u16 dialect; /* dialect index that server chose */
571 bool oplocks:1; /* enable oplocks */
572 unsigned int maxReq; /* Clients should submit no more */
575 unsigned int maxBuf; /* maxBuf specifies the maximum */
579 unsigned int max_rw; /* maxRw specifies the maximum */
582 unsigned int capabilities; /* selective disabling of caps by smb sess */
583 int timeAdj; /* Adjust for difference in server time zone in sec */
584 __u64 CurrentMid; /* multiplex id - rotating counter */
585 char cryptkey[CIFS_CRYPTO_KEY_SIZE]; /* used by ntlm, ntlmv2 etc */
587 char workstation_RFC1001_name[RFC1001_NAME_LEN_WITH_NULL];
588 __u32 sequence_number; /* for signing, protected by srv_mutex */
589 struct session_key session_key;
590 unsigned long lstrp; /* when we got last response from this server */
591 struct cifs_secmech secmech; /* crypto sec mech functs, descriptors */
595 char negflavor; /* NEGOTIATE response flavor */
597 bool sec_ntlmssp; /* supports NTLMSSP */
598 bool sec_kerberosu2u; /* supports U2U Kerberos */
622 in_flight(struct TCP_Server_Info *server) in in_flight() argument