Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for LocalAddr (0.06 sec)

  1. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

                // Test connection properties
                // Note: Local address may be null for TCP fallback provider
                InetSocketAddress localAddr = connection.getLocalAddress();
                if (localAddr != null) {
                    System.out.println("Local address: " + localAddr);
                }
    
                // Test that connection was created successfully
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            // Given
            InetAddress localAddr = InetAddress.getByName("127.0.0.1");
            InetAddress broadcastAddr = InetAddress.getByName("192.168.1.255");
            InetAddress[] winsServers = { InetAddress.getByName("192.168.1.1") };
    
            when(mockDelegate.getLocalAddr()).thenReturn(localAddr);
            when(mockDelegate.getBroadcastAddress()).thenReturn(broadcastAddr);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Feb 27 18:43:32 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg net, type AddrError struct, Addr string
    pkg net, type AddrError struct, Err string
    pkg net, type Conn interface { Close, LocalAddr, Read, RemoteAddr, SetDeadline, SetReadDeadline, SetWriteDeadline, Write }
    pkg net, type Conn interface, Close() error
    pkg net, type Conn interface, LocalAddr() Addr
    pkg net, type Conn interface, Read([]uint8) (int, error)
    pkg net, type Conn interface, RemoteAddr() Addr
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg net, method (*UnixConn) CloseRead() error
    pkg net, method (*UnixConn) CloseWrite() error
    pkg net, type Dialer struct
    pkg net, type Dialer struct, Deadline time.Time
    pkg net, type Dialer struct, LocalAddr Addr
    pkg net, type Dialer struct, Timeout time.Duration
    pkg net, type IPAddr struct, Zone string
    pkg net, type NS struct
    pkg net, type NS struct, Host string
    pkg net, type TCPAddr struct, Zone string
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top