Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getOldIPAddresses (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/internal/witness/WitnessNotification.java

            return newIPAddresses;
        }
    
        /**
         * Gets the list of old IP addresses.
         *
         * @return the old IP addresses
         */
        public List<WitnessIPAddress> getOldIPAddresses() {
            return oldIPAddresses;
        }
    
        /**
         * Gets the notification flags.
         *
         * @return the flags
         */
        public int getFlags() {
            return flags;
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:12:28 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  2. docs/smb3-features/06-witness-protocol-design.md

        public long getTimestamp() { return timestamp; }
        public List<WitnessIPAddress> getNewIPAddresses() { return newIPAddresses; }
        public List<WitnessIPAddress> getOldIPAddresses() { return oldIPAddresses; }
    }
    ```
    
    ### 4.3 Witness Client
    ```java
    package jcifs.internal.witness;
    
    import jcifs.dcerpc.*;
    import jcifs.dcerpc.rpc.*;
    import java.util.concurrent.*;
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 42K bytes
    - Click Count (0)
Back to Top