Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMachineId (0.05 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getMaxRequestRetries();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getMachineId()
         */
        @Override
        public byte[] getMachineId() {
            return this.delegate.getMachineId();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getGuestUsername()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                this.dialects[i] = ver.getDialect();
                i++;
            }
    
            if (config.getMaximumVersion().atLeast(DialectVersion.SMB210)) {
                System.arraycopy(config.getMachineId(), 0, this.clientGuid, 0, this.clientGuid.length);
            }
    
            final List<NegotiateContextRequest> negoContexts = new LinkedList<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         *
         * Normally this should be randomly assigned for each client instance/configuration.
         *
         * @return machine identifier (32 byte)
         */
        byte[] getMachineId();
    
        /**
         *
         *
         * Property {@code jcifs.smb.client.disableSpnegoIntegrity} (boolean, false)
         *
         * @return whether to disable sending/verifying SPNEGO mechanismListMIC
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            return this.guestPassword;
        }
    
        @Override
        public boolean isAllowGuestFallback() {
            return this.allowGuestFallback;
        }
    
        @Override
        public byte[] getMachineId() {
            return this.machineId;
        }
    
        @Override
        public boolean isUseDurableHandles() {
            return this.useDurableHandles;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top