- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for IpAddress (0.03 sec)
-
src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
public String getShareName() { return shareName; } /** * Sets the IP address of the client. * * @param ipAddress the IP address */ public void setIpAddress(String ipAddress) { this.ipAddress = ipAddress; } /** * Sets the IP address from an InetAddress. * * @param address the InetAddress */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
int ipCount = buf.dec_ndr_long(); List<String> ipAddresses = new ArrayList<>(ipCount); for (int i = 0; i < ipCount; i++) { String ipAddress = decodeWideStringPointer(buf); ipAddresses.add(ipAddress); } message.setIpAddresses(ipAddresses); } /** * Decodes a wide string pointer from NDR format. */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0)