Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cacheAddress (0.06 sec)

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

                expiration = System.currentTimeMillis() + this.transportContext.getConfig().getNetbiosCachePolicy() * 1000;
            }
            cacheAddress(hostName, addr, expiration);
        }
    
    
        void cacheAddress ( Name hostName, NbtAddress addr, long expiration ) {
            if ( this.transportContext.getConfig().getNetbiosCachePolicy() == 0 ) {
                return;
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                                        B_NODE,
                                        false, false, true, false,
                                        UNKNOWN_MAC_ADDRESS );
            cacheAddress( localName, localhost, FOREVER );
        }
    
        static void cacheAddress( Name hostName, NbtAddress addr ) {
            if( CACHE_POLICY == 0 ) {
                return;
            }
            long expiration = -1;
            if( CACHE_POLICY != FOREVER ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
Back to top