- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for nextCalledName (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/netbios/NbtAddressTest.java
// Test nextCalledName when calledName is hostName.name initially mockName = new Name(mockConfig, "MYSERVER", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); nbtAddress.firstCalledName(); // Initialize calledName assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.nextCalledName(mockContext)); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/UniAddress.java
* method is used exclusively by the <code>jcifs.smb1.smb1</code> package. * * @return the next called name to try */ public String nextCalledName() { if (addr instanceof NbtAddress) { return ((NbtAddress) addr).nextCalledName(); } if (calledName != NbtAddress.SMBSERVER_NAME) { calledName = NbtAddress.SMBSERVER_NAME; return calledName; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NbtAddress.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
default: disconnect(true); throw new NbtException(NbtException.ERR_SSN_SRVC, 0); } } while ((calledName.name = address.nextCalledName()) != null); throw new IOException("Failed to establish session with " + address); } private void negotiate(int port, final ServerMessageBlock resp) throws IOException {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0)