Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for SET (0.03 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

         * @return A <code>boolean</code> indicating whether the flag is set.
         */
        public boolean getFlag(int flag) {
            return (getFlags() & flag) != 0;
        }
    
        /**
         * Sets or clears the specified flag.
         * 
         * @param flag The flag to set/clear (i.e.,
         * <code>NTLMSSP_NEGOTIATE_OEM</code>).
         * @param value Indicates whether to set (<code>true</code>) or
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

    
        /**
         * @return the isExtended
         */
        public final boolean isExtended () {
            return this.isExtended;
        }
    
    
        /**
         * @param isExtended
         *            the isExtended to set
         */
        public final void setExtended ( boolean isExtended ) {
            this.isExtended = isExtended;
        }
    
    
        /**
         * @return the oplockLevel
         */
        public final byte getOplockLevel () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

        private String url;
        private SmbAuthException sae;
    
        private void reset() {
            url = null;
            sae = null;
        }
    
    /**
    Set the default <tt>NtlmAuthenticator</tt>. Once the default authenticator is set it cannot be changed. Calling this metho again will have no effect.
     */
    
        public synchronized static void setDefault( NtlmAuthenticator a ) {
            if( auth != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java

            }
            else if ( ( shareAccess & SmbConstants.FILE_SHARE_READ ) == 0 ) {
                this.desiredAccess |= SHARING_DENY_READ_EXECUTE;
            }
            else {
                // neither SHARE_READ nor SHARE_WRITE are set
                this.desiredAccess |= SHARING_DENY_READ_WRITE_EXECUTE;
            }
    
            this.desiredAccess &= ~0x1; // Win98 doesn't like GENERIC_READ ?! -- get Access Denied.
    
            // searchAttributes
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/DialectVersion.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs;
    
    
    import java.util.EnumSet;
    import java.util.Set;
    
    import jcifs.internal.smb2.Smb2Constants;
    
    
    /**
     * @author mbechler
     *
     */
    public enum DialectVersion {
    
        /**
         * Legacy SMB1/CIFS
         */
        SMB1,
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/Name.java

        public String name;
        /**
         * Scope id
         */
        public String scope;
        /**
         * Type
         */
        public int hexCode;
        int srcHashCode; /*
                          * srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
        private Configuration config;
    
    
        Name ( Configuration cfg ) {
            this.config = cfg;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

         * following are equivalent:
         * proto:\\ts0.win.net[endpoint=\pipe\srvsvc]
         * proto:ts0.win.net[\pipe\srvsvc]
         *
         * If the server is absent it is set to "127.0.0.1"
         */ 
        protected static DcerpcBinding parseBinding(String str) throws DcerpcException {
            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmServlet.java

        private boolean enableBasic;
    
        private boolean insecureBasic;
    
        private String realm;
    
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
    
            /* Set jcifs.smb1 properties we know we want; soTimeout and cachePolicy to 10min.
             */
            Config.setProperty( "jcifs.smb1.smb.client.soTimeout", "300000" );
            Config.setProperty( "jcifs.smb1.netbios.cachePolicy", "600" );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         */
        public boolean isAsyncHandled () {
            return this.asyncHandled;
        }
    
    
        /**
         * @param asyncHandled
         *            the asyncHandled to set
         */
        public void setAsyncHandled ( boolean asyncHandled ) {
            this.asyncHandled = asyncHandled;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/JAASAuthenticator.java

         * 
         * This will create a JAAS configuration with the specified properties that is used to obtain a TGT.
         * 
         * @param properties
         *            JAAS properties to set
         * @param domain
         * @param username
         * @param password
         */
        public JAASAuthenticator ( Map<String, ?> properties, String domain, String username, String password ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
Back to top