- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getLocalAddr (0.11 sec)
-
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled); } @Override public SmbTransportImpl getSmbTransport ( CIFSContext tc, Address address, int port, boolean nonPooled, boolean forceSigning ) { return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled, forceSigning); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getLocalPort(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getLocalAddr() */ @Override public InetAddress getLocalAddr () { return this.delegate.getLocalAddr(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosHostname() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.random; } @Override public String getNetbiosHostname () { return this.netbiosHostname; } @Override public InetAddress getLocalAddr () { return this.smbLocalAddress; } @Override public int getLocalPort () { return this.smbLocalPort; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
int getLocalPort (); /** * * Property <tt>jcifs.smb.client.laddr</tt> (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr (); /** * * Property <tt>jcifs.netbios.hostname</tt> (string) * * @return local NETBIOS/short name to announce */ String getNetbiosHostname ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)