- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 190 for Lmhosts (0.06 sec)
-
src/main/java/jcifs/smb1/netbios/Lmhosts.java
import jcifs.smb1.Config; import jcifs.smb1.smb1.SmbFileInputStream; import jcifs.smb1.util.LogStream; import java.net.UnknownHostException; public class Lmhosts { private static final String FILENAME = Config.getProperty( "jcifs.smb1.netbios.lmhosts" ); private static final Hashtable TAB = new Hashtable(); private static long lastModified = 1L; private static int alt;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.smb.SmbFileInputStream; /** * * */ public class Lmhosts { private static final Logger log = LoggerFactory.getLogger(Lmhosts.class); private final Map<Name, NbtAddress> table = new HashMap<>(); private long lastModified = 1L; private int alt; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
in = new DatagramPacket( rcv_buf, RCV_BUF_SIZE ); if( RO == null || RO.length() == 0 ) { /* No resolveOrder has been specified, use the * default which is LMHOSTS,DNS,WINS,BCAST * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not * been specified. */ if( NbtAddress.getWINSAddress() == null ) { resolveOrder = new int[2];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
private List<ResolverType> resolveOrder = new ArrayList<>(); private InetAddress laddr, baddr; private CIFSContext transportContext; private NbtAddress localhostAddress; private Lmhosts lmhosts = new Lmhosts(); private Name unknownName; private NbtAddress unknownAddress; /** * * @param tc */ public NameServiceClientImpl ( CIFSContext tc ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
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/ResolverType.java
* Resolve using WINS server */ RESOLVER_WINS, /** * NETBIOS broadcast */ RESOLVER_BCAST, /** * DNS */ RESOLVER_DNS, /** * LMHosts file lookup */ RESOLVER_LMHOSTS
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return whether to force extended security usage */ boolean isForceExtendedSecurity (); /** * * * Property <tt>jcifs.netbios.lmhosts</tt> (string) * * @return lmhosts file to use */ String getLmHostsFileName (); /** * * Property <tt>jcifs.netbios.scope</tt> (string) *
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/UniAddress.java
* and {@link java.net.InetAddress}. The name resolution mechanisms * used will systematically query all available configured resolution * services including WINS, broadcasts, DNS, and LMHOSTS. See * <a href="../../resolver.html">Setting Name Resolution Properties</a> * and the <code>jcifs.resolveOrder</code> property. Changing * jCIFS name resolution properties can greatly affect the behavior of
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.netbiosLocalPort = Config.getInt(p, "jcifs.netbios.lport", 0); this.netbiosLocalAddress = Config.getInetAddress(p, "jcifs.netbios.laddr", null); this.lmhostsFilename = p.getProperty("jcifs.netbios.lmhosts"); this.winsServer = Config.getInetAddressArray(p, "jcifs.netbios.wins", ",", new InetAddress[0]); this.transactionBufferSize = Config.getInt(p, "jcifs.smb.client.transaction_buf_size", 0xFFFF) - 512;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0)