- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for expandedNames (0.04 sec)
-
src/main/java/jcifs/internal/dfs/Referral.java
return this.specialName; } /** * Gets the expanded names array for this referral. * * @return the expandedNames */ public final String[] getExpandedNames() { return this.expandedNames; } @Override public int decode(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
if ((dr.rflags & Trans2GetDfsReferralResponse.FLAGS_NAME_LIST_REFERRAL) == Trans2GetDfsReferralResponse.FLAGS_NAME_LIST_REFERRAL) { final String[] expandedNames = ref.getExpandedNames(); if (expandedNames.length > 0) { dr.server = expandedNames[0].substring(1).toLowerCase(); } else { dr.server = ref.getSpecialName().substring(1).toLowerCase(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.put(specialName.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Expanded names at offset 44 bb.position(44); String[] expandedNames = { "NAME1", "NAME2", "NAME3" }; for (String name : expandedNames) { bb.put(name.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); } // Decode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0)