- Sort Score
- Result 10 results
- Languages All
Results 11 - 13 of 13 for getLocalPort (0.42 sec)
-
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
when(ctx.getCredentials()).thenReturn(creds); when(ctx.getTransportPool()).thenReturn(pool); // Default config values when(config.getLocalAddr()).thenReturn(null); when(config.getLocalPort()).thenReturn(0); when(config.getSessionLimit()).thenReturn(10); when(config.isSigningEnforced()).thenReturn(false); when(config.isIpcSigningEnforced()).thenReturn(true);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
*/ int getResponseTimeout(); /** * * Property {@code jcifs.smb.client.lport} (int) * * @return local port to use for outgoing connections */ int getLocalPort(); /** * * Property {@code jcifs.smb.client.laddr} (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr(); /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.netbiosHostname; } @Override public InetAddress getLocalAddr() { return this.smbLocalAddress; } @Override public int getLocalPort() { return this.smbLocalPort; } @Override public int getConnTimeout() { return this.smbConnectionTimeout; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)