- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getNetbiosHostname (0.09 sec)
-
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)