Print this page
12513 SMB 3.1.1 support for server

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/smbsrv/smb_ioctl.h
          +++ new/usr/src/uts/common/smbsrv/smb_ioctl.h
↓ open down ↓ 14 lines elided ↑ open up ↑
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  23   23   * Copyright 2017 Nexenta Systems, Inc.  All rights reserved.
  24   24   * Copyright 2017 Joyent, Inc.
       25 + * Copyright 2020 RackTop Systems, Inc.
  25   26   */
  26   27  
  27   28  #ifndef _SMB_IOCTL_H_
  28   29  #define _SMB_IOCTL_H_
  29   30  
  30   31  #ifdef  __cplusplus
  31   32  extern "C" {
  32   33  #endif
  33   34  
  34   35  #include <sys/types.h>
↓ open down ↓ 135 lines elided ↑ open up ↑
 170  171          int32_t         netbios_enable;
 171  172          int32_t         ipv6_enable;
 172  173          int32_t         print_enable;
 173  174          int32_t         traverse_mounts;
 174  175          uint32_t        max_protocol;
 175  176          uint32_t        min_protocol;
 176  177          uint32_t        encrypt;
 177  178          uint32_t        exec_flags;
 178  179          uint32_t        negtok_len;
 179  180          smb_version_t   version;
      181 +        uint16_t        encrypt_cipher;
 180  182          uint16_t        initial_credits;
 181  183          uint16_t        maximum_credits;
 182  184          /* SMB negotiate protocol response. */
 183  185          uuid_t          machine_uuid;
 184  186          uchar_t         negtok[SMB_PI_MAX_NEGTOK];
 185  187          char            native_os[SMB_PI_MAX_NATIVE_OS];
 186  188          char            native_lm[SMB_PI_MAX_LANMAN];
 187  189          char            nbdomain[NETBIOS_NAME_SZ];
 188  190          char            fqdn[SMB_PI_MAX_DOMAIN];
 189  191          char            hostname[SMB_PI_MAX_HOST];
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX