Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Proximity (0.19 sec)

  1. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

            }
    
            @Override
            public String toString() {
                return ("Referral[" + "version=" + version + ",size=" + size + ",serverType=" + serverType + ",flags=" + flags + ",proximity="
                        + proximity + ",ttl=" + ttl + ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset + ",nodeOffset="
                        + nodeOffset + ",path=" + path + ",altPath=" + altPath + ",node=" + node + "]");
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dfs/Referral.java

         * @return the rflags
         */
        public final int getRFlags() {
            return this.rflags;
        }
    
        /**
         * Gets the proximity value indicating the distance to the target.
         *
         * @return the proximity
         */
        public final int getProximity() {
            return this.proximity;
        }
    
        /**
         * Gets the alternate path for this referral.
         *
         * @return the altPath
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/dfs/ReferralTest.java

                int proximity = testCase[1];
                int ttl = testCase[2];
    
                ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN);
    
                bb.putShort((short) 3);
                bb.putShort((short) 34);
                bb.putShort((short) serverType);
                bb.putShort((short) 0);
                bb.putShort((short) proximity);
                bb.putShort((short) ttl);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java

            // Server type (2 bytes)
            SMBUtil.writeInt2(1, buffer, 12);
    
            // Referral flags (2 bytes)
            SMBUtil.writeInt2(0, buffer, 14);
    
            // Proximity (2 bytes for v3)
            SMBUtil.writeInt2(0, buffer, 16);
    
            // Time to live (2 bytes for v3)
            SMBUtil.writeInt2(300, buffer, 18);
    
            // DFS path offset (2 bytes) - points to string data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

                bb.putShort((short) 3); // version
                bb.putShort((short) 34); // size
                bb.putShort((short) 1); // serverType
                bb.putShort((short) 2); // rflags
                bb.putShort((short) 10); // proximity
                bb.putShort((short) 300); // ttl
                bb.putShort((short) 20); // pathOffset
                bb.putShort((short) 24); // altPathOffset
                bb.putShort((short) 28); // nodeOffset
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top