Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getMachineId (0.24 sec)

  1. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

            super(AvPair.MsvAvSingleHost, raw);
        }
    
    
        /**
         * 
         * @param cfg
         */
        public AvSingleHost ( Configuration cfg ) {
            this(new byte[8], cfg.getMachineId());
        }
    
    
        /**
         * 
         * @param customData
         * @param machineId
         */
        public AvSingleHost ( byte[] customData, byte[] machineId ) {
            this(encode(customData, machineId));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  2. 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
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  3. 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);
            }
    
            List<NegotiateContextRequest> negoContexts = new LinkedList<>();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K 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;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getBatchLimit(java.lang.String)
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  5. 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 <tt>jcifs.smb.client.disableSpnegoIntegrity</tt> (boolean, false)
         * 
         * @return whether to disable sending/verifying SPNEGO mechanismListMIC
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top