Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bond (0.14 sec)

  1. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.netbios.lport</tt> (int)
         * 
         * @return local bind port for nebios connections
         */
        int getNetbiosLocalPort ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.laddr</tt> (string)
         * 
         * @return local bind address for netbios connections
         */
        InetAddress getNetbiosLocalAddress ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            Name calledName = new Name(tc.getConfig(), this.address.firstCalledName(), 0x20, null);
            do {
                this.socket = new Socket();
                if ( this.localAddr != null )
                    this.socket.bind(new InetSocketAddress(this.localAddr, this.localPort));
                this.socket.connect(new InetSocketAddress(this.address.getHostAddress(), 139), tc.getConfig().getConnTimeout());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top