Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for use (0.09 sec)

  1. src/main/java/jcifs/SmbTransportPool.java

                throws UnknownHostException, IOException;
    
    
        /**
         * Get transport connection
         * 
         * @param tc
         *            context to use
         * @param address
         * @param port
         * @param exclusive
         *            whether to acquire an unshared connection
         * @return a transport connection to the target
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/UniAddress.java

    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    import jcifs.Address;
    import jcifs.CIFSContext;
    
    
    /**
     * <p>
     * Under normal conditions it is not necessary to use
     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  3. README.md

    For example, since [Fess](https://github.com/codelibs/fess) needs to support many SMB devices, it uses this library.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/https/Handler.java

        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
    
        /**
         * @param tc
         *            context to use
         * 
         */
        public Handler ( CIFSContext tc ) {
            super(tc);
        }
    
    
        /**
         * Returns the default HTTPS port.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeHandleInternal.java

         * @return whether the session uses SMB signing
         * @throws CIFSException
         * @throws SmbException
         */
        boolean areSignaturesActive () throws CIFSException;
    
    
        /**
         * Internal/testing use only
         * 
         * @return attached session
         */
        SmbSession getSession ();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcException.java

    
        /**
         * 
         * @return the error code
         */
        public int getErrorCode () {
            return this.error;
        }
    
    
        /**
         * 
         * @return the root cause
         * @deprecated use {@link #getCause()}
         */
        @Deprecated
        public Throwable getRootCause () {
            return getCause();
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    		ACB_TRUSTED_FOR_DELEGATION = 0x00002000, /* 1 = Trusted for Delegation */
    		ACB_NOT_DELEGATED          = 0x00004000, /* 1 = Not delegated */
    		ACB_USE_DES_KEY_ONLY       = 0x00008000, /* 1 = Use DES key only */
    		ACB_DONT_REQUIRE_PREAUTH   = 0x00010000  /* 1 = Preauth not required */
    	} SamrAcctFlags;
    
    	[op(0x01)]
    	int SamrCloseHandle([in] policy_handle *handle);
    
    	[op(0x39)]
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmSsp.java

            return authenticate(tc, req, resp, challenge);
        }
    
    
        /**
         * Performs NTLM authentication for the servlet request.
         * 
         * @param tc
         *            context to use
         *
         * @param req
         *            The request being serviced.
         * @param resp
         *            The response.
         * @param challenge
         *            The domain controller challenge.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

                }
    
                bufferIndex += e.getNextEntryOffset();
            }
    
            setResults(results);
    
            /*
             * last nextEntryOffset for NT 4(but not 98) is 0 so we must
             * use dataCount or our accounting will report an error for NT :~(
             */
            return getDataCount();
        }
    
    
        @Override
        public String toString () {
            String c;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Sent by the server to indicate that the server and client are
         * on the same machine. This implies that the server will include
         * a local security context handle in the Type 2 message, for
         * use in local authentication.
         */
        public static final int NTLMSSP_NEGOTIATE_LOCAL_CALL = 0x00004000;
    
        /**
         * Indicates that authenticated communication between the client
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
Back to top