Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for Info (0.12 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * including a Target Information block in the message. The Target
         * Information block is used in the calculation of the NTLMv2 response.
         */
        public static final int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000;
    
        /**
         * 
         */
        public static final int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
    
        /**
         * Indicates that 128-bit encryption is supported.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            public int level;
            public NdrObject info;
    
            public ShareGetInfo(String servername,
                        String sharename,
                        int level,
                        NdrObject info) {
                this.servername = servername;
                this.sharename = sharename;
                this.level = level;
                this.info = info;
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 18.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

        /**
         * 
         */
        public static final int OWNER_SECURITY_INFO = 0x1;
    
        /**
         * 
         */
        public static final int GROUP_SECURITY_INFO = 0x2;
    
        /**
         * 
         */
        public static final int DACL_SECURITY_INFO = 0x4;
    
        /**
         * 
         */
        public static final int SACL_SECURITY_INFO = 0x8;
    
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            setFileInfoClass(fi.getFileInformationLevel());
            setInfo(fi);
        }
    
    
        /**
         * @param info
         *            the info to set
         */
        public void setInfo ( Encodable info ) {
            this.info = info;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

        public int getInformationLevel () {
            return this.informationLevel;
        }
    
    
        /**
         * @return the filesystem info
         */
        public FileSystemInformation getInfo () {
            return this.info;
        }
    
    
        /**
         * @param clazz
         * @return the filesystem info
         * @throws CIFSException
         */
        @SuppressWarnings ( "unchecked" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    			[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,
    			[out,switch_is(level)] ShareInfo *info);
    
    	typedef struct {
    		unsigned long platform_id;
    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)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java

            super(server, 200, 0xFFFF, new netdfs.DfsEnumStruct(), new NdrLong(0));
            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];
    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)
  8. src/main/java/jcifs/internal/smb2/Smb2Constants.java

        /**
         * 
         */
        public static final byte SMB2_0_INFO_FILE = 1;
    
        /**
         * 
         */
        public static final byte SMB2_0_INFO_FILESYSTEM = 2;
    
        /**
         * 
         */
        public static final byte SMB2_0_INFO_SECURITY = 3;
    
        /**
         * 
         */
        public static final byte SMB2_0_INFO_QUOTA = 4;
    
        /**
         * 
         */
    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)
  9. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            this.fileInfoClass = fileInfoClass;
        }
    
    
        /**
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public final void setFilesystemInfoClass ( byte fileInfoClass ) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILESYSTEM);
            this.fileInfoClass = fileInfoClass;
        }
    
    
    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)
  10. 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)
Back to top