- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getMachineId (0.15 sec)
-
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));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
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 Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
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<>();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.5K bytes - Viewed (0) -
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
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)