Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for into (0.18 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	} ShareCtr;
    
    	[op(0x0f)]
    	int ShareEnumAll([in,string,unique] wchar_t *servername,
    			[in,out] int *level,
    			[in,out,switch_is(*level)] ShareCtr *info,
    			[in] unsigned long prefmaxlen,
    			[out] unsigned long *totalentries,
    			[in,out] unsigned long *resume_handle);
    
    	[op(0x10)]
    	int ShareGetInfo([in,string,unique] wchar_t *servername,
    			[in,string] wchar_t *sharename,
    			[in] int level,
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java

            info.level = level;
            info.e = new netdfs.DfsEnumArray200();
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
        public FileEntry[] getEntries() {
            netdfs.DfsEnumArray200 a200 = (netdfs.DfsEnumArray200)info.e;
            SmbShareInfo[] entries = new SmbShareInfo[a200.count];
            for (int i = 0; i < a200.count; i++) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2Constants.java

        /**
         * 
         */
        public static final int SMB2_DIALECT_0300 = 0x0300;
    
        /**
         * 
         */
        public static final int SMB2_DIALECT_0302 = 0x0302;
    
        /**
         * 
         */
        public static final int SMB2_DIALECT_0311 = 0x0311;
    
        /**
         * 
         */
        public static final int SMB2_DIALECT_ANY = 0x02FF;
    
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

            int start = dstIndex;
    
            SMBUtil.writeInt2(41, dst, dstIndex);
            dst[ dstIndex + 2 ] = this.infoType;
            dst[ dstIndex + 3 ] = this.fileInfoClass;
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.outputBufferLength, dst, dstIndex);
            dstIndex += 4;
            int inBufferOffsetOffset = dstIndex;
            dstIndex += 4;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 10:41:31 GMT 2021
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcQueryInformationPolicy.java

        public MsrpcQueryInformationPolicy(LsaPolicyHandle policyHandle,
                        short level,
                        NdrObject info) {
            super(policyHandle, level, info);
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SIDCacheImpl.java

                        handle.sendrecv(rpc);
                        if ( rpc.retval != 0 )
                            throw new SmbException(rpc.retval, false);
                    }
    
                    return new SID(info.sid, jcifs.SID.SID_TYPE_DOMAIN, ( new UnicodeString(info.name, false) ).toString(), null, false);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

            return dstIndex - start;
        }
        int readSetupWireFormat( byte[] buffer, int bufferIndex, int len ) {
            return 0;
        }
        int readParametersWireFormat( byte[] buffer, int bufferIndex, int len ) {
            return 0;
        }
        int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) {
            return 0;
        }
        public String toString() {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

    import jcifs.internal.smb2.create.Smb2CloseRequest;
    import jcifs.internal.smb2.create.Smb2CreateRequest;
    import jcifs.internal.smb2.create.Smb2CreateResponse;
    import jcifs.internal.smb2.info.Smb2QueryDirectoryRequest;
    import jcifs.internal.smb2.info.Smb2QueryDirectoryResponse;
    
    
    /**
     * @author mbechler
     *
     */
    public class DirFileEntryEnumIterator2 extends DirFileEntryEnumIteratorBase {
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 16:15:08 GMT 2020
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/fscc/FileInternalInfo.java

            return FILE_INTERNAL_INFO;
        }
    
    
        /**
         * @return the indexNumber
         */
        public long getIndexNumber () {
            return this.indexNumber;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
        public int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
        @Override
        public int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException {
            int start = bufferIndex;
            this.alloc = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
Back to top