• Home
  • Raw
  • Download

Lines Matching defs:smb_vol

480 struct smb_vol {  struct
481 char *username;
482 char *password;
483 char *domainname;
484 char *UNC;
485 char *iocharset; /* local code page for mapping to and from Unicode */
486 char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */
487 char target_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* srvr nb name */
488 kuid_t cred_uid;
489 kuid_t linux_uid;
490 kgid_t linux_gid;
491 kuid_t backupuid;
492 kgid_t backupgid;
493 umode_t file_mode;
494 umode_t dir_mode;
495 enum securityEnum sectype; /* sectype requested via mnt opts */
496 bool sign; /* was signing requested via mnt opts? */
497 bool retry:1;
498 bool intr:1;
499 bool setuids:1;
500 bool setuidfromacl:1;
501 bool override_uid:1;
502 bool override_gid:1;
503 bool dynperm:1;
504 bool noperm:1;
505 bool no_psx_acl:1; /* set if posix acl support should be disabled */
506 bool cifs_acl:1;
507 bool backupuid_specified; /* mount option backupuid is specified */
508 bool backupgid_specified; /* mount option backupgid is specified */
509 bool no_xattr:1; /* set if xattr (EA) support should be disabled*/
510 bool server_ino:1; /* use inode numbers from server ie UniqueId */
511 bool direct_io:1;
512 bool strict_io:1; /* strict cache behavior */
513 bool remap:1; /* set to remap seven reserved chars in filenames */
514 bool sfu_remap:1; /* remap seven reserved chars ala SFU */
515 bool posix_paths:1; /* unset to not ask for posix pathnames. */
516 bool no_linux_ext:1;
517 bool sfu_emul:1;
518 bool nullauth:1; /* attempt to authenticate with null user */
519 bool nocase:1; /* request case insensitive filenames */
520 bool nobrl:1; /* disable sending byte range locks to srv */
521 bool mand_lock:1; /* send mandatory not posix byte range lock reqs */
522 bool seal:1; /* request transport encryption on share */
523 bool nodfs:1; /* Do not request DFS, even if available */
524 bool local_lease:1; /* check leases only on local system, not remote */
525 bool noblocksnd:1;
526 bool noautotune:1;
527 bool nostrictsync:1; /* do not force expensive SMBflush on every sync */
528 bool fsc:1; /* enable fscache */
529 bool mfsymlinks:1; /* use Minshall+French Symlinks */
530 bool multiuser:1;
531 bool rwpidforward:1; /* pid forward for read/write operations */
532 bool nosharesock:1;
533 bool persistent:1;
534 bool nopersistent:1;
535 bool resilient:1; /* noresilient not required since not fored for CA */
536 bool domainauto:1;
537 unsigned int rsize;
538 unsigned int wsize;
539 bool sockopt_tcp_nodelay:1;
540 unsigned long actimeo; /* attribute cache timeout (jiffies) */
541 struct smb_version_operations *ops;
542 struct smb_version_values *vals;
543 char *prepath;
544 struct sockaddr_storage dstaddr; /* destination address */
545 struct sockaddr_storage srcaddr; /* allow binding to a local IP */
569 struct smb_vol *vol; argument