Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for laddr (0.03 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            request.addr = addr != null ? addr : getWINSAddress();
            request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr);
    
            if (request.isBroadcast) {
                if (request.addr == null) {
                    request.addr = this.baddr;
                }
                n = config.getNetbiosRetryCount();
            } else {
                n = 1;
            }
    
            do {
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

        private int[] resolveOrder;
    
        InetAddress laddr, baddr;
    
        NameServiceClient() {
            this(LPORT, LADDR);
        }
    
        NameServiceClient(final int lport, final InetAddress laddr) {
            this.lport = lport;
            this.laddr = laddr;
    
            try {
                baddr = Config.getInetAddress("jcifs.smb1.netbios.baddr", InetAddress.getByName("255.255.255.255"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Config.java

            final String addr = props.getProperty("jcifs.smb.client.laddr");
    
            if (addr != null) {
                try {
                    return InetAddress.getByName(addr);
                } catch (final UnknownHostException uhe) {
                    log.error("Ignoring jcifs.smb.client.laddr address: " + addr, uhe);
                }
            }
    
            return null;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/Config.java

            final String addr = prp.getProperty("jcifs.smb1.smb.client.laddr");
    
            if (addr != null) {
                try {
                    return InetAddress.getByName(addr);
                } catch (final UnknownHostException uhe) {
                    if (LogStream.level > 0) {
                        log.println("Ignoring jcifs.smb1.smb.client.laddr address: " + addr);
                        uhe.printStackTrace(log);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * Property {@code jcifs.smb.client.lport} (int)
         *
         * @return local port to use for outgoing connections
         */
        int getLocalPort();
    
        /**
         *
         * Property {@code jcifs.smb.client.laddr} (string)
         *
         * @return local address to use for outgoing connections
         */
        InetAddress getLocalAddr();
    
        /**
         *
         * Property {@code jcifs.netbios.hostname} (string)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/PropertyConfiguration.java

            }
    
            value = props.getProperty("jcifs.netbios.laddr");
            if (value != null) {
                try {
                    this.netbiosLocalAddress = InetAddress.getByName(value);
                } catch (UnknownHostException e) {
                    // Invalid address ignored
                }
            }
    
            value = props.getProperty("jcifs.netbios.baddr");
            if (value != null) {
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Default session limit */
        int DEFAULT_SSN_LIMIT = 250;
        /** Default connection timeout in milliseconds */
        int DEFAULT_CONN_TIMEOUT = 35000;
    
        /** Local address to bind to */
        InetAddress LADDR = Config.getLocalHost();
        /** Local port to bind to */
        int LPORT = Config.getInt("jcifs.smb1.smb.client.lport", 0);
        /** Maximum multiplex count */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportImpl.java

                    && (prt == 0 || prt == this.port ||
                    /* port 139 is ok if 445 was requested */
                            prt == 445 && this.port == 139)
                    && (laddr == this.localAddr || laddr != null && laddr.equals(this.localAddr)) && lprt == this.localPort;
        }
    
        void ssn139() throws IOException {
            final CIFSContext tc = this.transportContext;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        static HashMap dfsRoots = null;
    
        static synchronized SmbTransport getSmbTransport(final UniAddress address, final int port) {
            return getSmbTransport(address, port, LADDR, LPORT, null);
        }
    
        static synchronized SmbTransport getSmbTransport(final UniAddress address, final int port, final InetAddress localAddr,
                final int localPort, final String hostName) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                for (final NbtAddress addr : addrs) {
                    CacheEntry entry = (CacheEntry) ADDRESS_CACHE.get(addr.hostName);
                    if (entry == null) {
                        entry = new CacheEntry(addr.hostName, addr, expiration);
                        ADDRESS_CACHE.put(addr.hostName, entry);
                    } else {
                        entry.address = addr;
                        entry.expiration = expiration;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
Back to top