- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for LocalAddr (0.12 sec)
-
src/main/java/jcifs/SmbTransportPool.java
* @param address * @param port * @param localAddr * @param localPort * @param hostName * @param exclusive * whether to acquire an unshared connection * @return a transport connection to the target */ SmbTransport getSmbTransport ( CIFSContext tc, Address address, int port, InetAddress localAddr, int localPort, String hostName, boolean exclusive );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
} public NbtSocket( NbtAddress address, int port, InetAddress localAddr, int localPort ) throws IOException { this( address, null, port, localAddr, localPort ); } public NbtSocket( NbtAddress address, String calledName, int port, InetAddress localAddr, int localPort ) throws IOException { super( address.getInetAddress(), ( port == 0 ? SSN_SRVC_PORT : port ),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
return delegate!!.isConnected } override fun isClosed(): Boolean { return delegate!!.isClosed } @Throws(IOException::class) override fun bind(localAddr: SocketAddress) { delegate!!.bind(localAddr) } @Throws(IOException::class) override fun connect(remoteAddr: SocketAddress) { delegate!!.connect(remoteAddr) } @Throws(IOException::class)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
cmd/sftp-server_test.go
return []byte{} } func (m *MockConnMeta) ServerVersion() []byte { return []byte{} } func (m *MockConnMeta) RemoteAddr() net.Addr { return nil } func (m *MockConnMeta) LocalAddr() net.Addr { return nil } func newSSHConnMock(username string) ssh.ConnMetadata { return &MockConnMeta{username: username} } func TestSFTPAuthentication(t *testing.T) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 28 09:06:25 UTC 2024 - 8.3K bytes - Viewed (0)