Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TCP (0.12 sec)

  1. src/main/java/jcifs/netbios/UniAddress.java

         * UnknownHostException uhe = null;
         * 
         * try {
         * context = new InitialDirContext();
         * for ( ;; ) {
         * try {
         * Attributes attributes = context.getAttributes(
         * "dns:/_ldap._tcp.dc._msdcs." + name,
         * new String[] { "SRV" }
         * );
         * return name;
         * } catch (NameNotFoundException nnfe) {
         * uhe = new UnknownHostException(nnfe.getMessage());
         * }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FLAGS2 = Config.getInt( "jcifs.smb1.smb.client.flags2", DEFAULT_FLAGS2 );
        static final int CAPABILITIES = Config.getInt( "jcifs.smb1.smb.client.capabilities", DEFAULT_CAPABILITIES );
        static final boolean TCP_NODELAY = Config.getBoolean( "jcifs.smb1.smb.client.tcpNoDelay", false );
        static final int RESPONSE_TIMEOUT =
                    Config.getInt( "jcifs.smb1.smb.client.responseTimeout", DEFAULT_RESPONSE_TIMEOUT );
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NetbiosAddress.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    import java.net.UnknownHostException;
    
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
Back to top