- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNetbiosHostname (0.13 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getLocalAddr(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosHostname() */ @Override public String getNetbiosHostname () { return this.delegate.getNetbiosHostname(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getLogonShare() */ @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/smb/NtlmContext.java
} else { this.ntlmsspFlags |= NtlmFlags.NTLMSSP_NEGOTIATE_ANONYMOUS; } this.requireKeyExchange = doSigning; this.workstation = tc.getConfig().getNetbiosHostname(); } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getSupportedMechs() */ @Override public ASN1ObjectIdentifier[] getSupportedMechs () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
this.initDefaults(); } } @Override public SecureRandom getRandom () { return this.random; } @Override public String getNetbiosHostname () { return this.netbiosHostname; } @Override public InetAddress getLocalAddr () { return this.smbLocalAddress; } @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
InetAddress getLocalAddr (); /** * * Property <tt>jcifs.netbios.hostname</tt> (string) * * @return local NETBIOS/short name to announce */ String getNetbiosHostname (); /** * * Property <tt>jcifs.smb.client.logonShare</tt> * * @return share to connect to during authentication, if unset connect to IPC$ */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
* client. This is primarily (exclusively?) used as a * CallingName during session establishment. */ String localHostname = tc.getConfig().getNetbiosHostname(); if ( localHostname == null || localHostname.length() == 0 ) { byte[] addr = localInetAddress.getAddress(); localHostname = "JCIFS" + ( addr[ 2 ] & 0xFF ) + "_" + ( addr[ 3 ] & 0xFF ) + "_"
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0)