Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for native (0.22 sec)

  1. src/main/java/jcifs/smb/DfsImpl.java

                    }
                    ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                    if ( tf.getConfig().isDfsStrictView() && ioe instanceof SmbAuthException ) {
                        throw (SmbAuthException) ioe;
                    }
                }
                ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                this.dcCache.put(dom, ce);
                return null;
            }
    
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
    
        public static class DfsInfo1 extends NdrObject {
    
            public String entry_path;
    
    
            @Override
            public void encode ( NdrBuffer _dst ) throws NdrException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 16.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            if ( this.machineId == null ) {
                byte[] mid = new byte[32];
                this.random.nextBytes(mid);
                this.machineId = mid;
            }
    
            if ( this.nativeOs == null ) {
                this.nativeOs = System.getProperty("os.name");
            }
    
            if ( this.flags2 == 0 ) {
                this.flags2 = SmbConstants.FLAGS2_LONG_FILENAMES | SmbConstants.FLAGS2_EXTENDED_ATTRIBUTES
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     */ 
    
        public boolean isInConflict() throws UnknownHostException {
            checkNodeStatusData();
            return isInConflict;
        }
    
    /** 
     * Determines if this address is active.
     *
     * @throws UnknownHostException if the host cannot be resolved to find out.
     */ 
    
        public boolean isActive() throws UnknownHostException {
            checkNodeStatusData();
            return isActive;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.nativeOs</tt> (string, default <tt>os.name</tt>)
         * 
         * @return OS string to report
         */
        String getNativeOs ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

        public static final int DFS_STORAGE_STATE_OFFLINE = 0x0001;
        public static final int DFS_STORAGE_STATE_ONLINE = 0x0002;
        public static final int DFS_STORAGE_STATE_ACTIVE = 0x0004;
        public static class DfsInfo1 extends NdrObject {
    
            public String entry_path;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            /*
             * Looks like the failure case also is just reflecting back the signature we sent
             */
    
            /**
             * Maybe this is related:
             * 
             * If signing is not active, the SecuritySignature field of the SMB Header for all messages sent, except
             * the SMB_COM_SESSION_SETUP_ANDX Response (section 2.2.4.53.2), MUST be set to
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            }
                            else if ( resolverType == ResolverType.RESOLVER_WINS ) {
                                /*
                                 * If WINS reports negative, no point in retry
                                 */
                                break;
                            }
                        }
                        break;
                    default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeConnection.java

            if ( c.ctx.getConfig().isTraceResourceUsage() ) {
                return new SmbTreeConnectionTrace(c);
            }
            return new SmbTreeConnection(c);
        }
    
    
        /**
         * @return the active configuration
         */
        public Configuration getConfig () {
            return this.ctx.getConfig();
        }
    
    
        private synchronized SmbTreeImpl getTree () {
            SmbTreeImpl t = this.tree;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top