Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for information (0.17 sec)

  1. src/main/java/jcifs/smb1/smb1/SID.java

         * to resolve SIDs using a cache and cache the results of any SIDs that
         * required resolving with the authority. SID cache entries are currently not
         * expired because under normal circumstances SID information never changes.
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java

    import java.io.UnsupportedEncodingException;
    
    class Trans2QueryFSInformationResponse extends SmbComTransactionResponse {
    
        // information levels
        static final int SMB_INFO_ALLOCATION = 1;
        static final int SMB_QUERY_FS_SIZE_INFO = 0x103;
        static final int SMB_FS_FULL_SIZE_INFORMATION = 1007;
    
        class SmbInfoAllocation implements AllocInfo {
            long alloc;                  // Also handles SmbQueryFSSizeInfo
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

        public Trans2QueryPathInformationResponse ( Configuration config, int informationLevel ) {
            super(config);
            this.informationLevel = informationLevel;
            this.setSubCommand(SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION);
        }
    
    
        /**
         * @return the info
         */
        public final FileInformation getInfo () {
            return this.info;
        }
    
    
        /**
         * 
         * @param type
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

         * 
         */
        public static final byte TRANS2_QUERY_FS_INFORMATION = (byte) 0x03;
        /**
         * 
         */
        public static final byte TRANS2_QUERY_PATH_INFORMATION = (byte) 0x05;
        /**
         * 
         */
        public static final byte TRANS2_GET_DFS_REFERRAL = (byte) 0x10;
        /**
         * 
         */
        public static final byte TRANS2_QUERY_FILE_INFORMATION = (byte) 0x07;
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java

         * @param filename
         * @param informationLevel
         */
        public Trans2QueryPathInformation ( Configuration config, String filename, int informationLevel ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_PATH_INFORMATION);
            this.path = filename;
            this.informationLevel = informationLevel;
            this.totalDataCount = 0;
            this.maxParameterCount = 2;
            this.maxDataCount = 40;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

                pacStream.skipBytes(28);
    
                // Extra SIDs information
                int extraSidCount = pacStream.readInt();
                int extraSidPointer = pacStream.readInt();
    
                // ID for resource groups domain (used with IDs to get SIDs)
                int resourceDomainIdPointer = pacStream.readInt();
    
                // Resource groups information
                int resourceGroupCount = pacStream.readInt();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Date;
    
    import jcifs.smb1.util.Hexdump;
    
    class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    
        // information levels
        static final int SMB_QUERY_FILE_BASIC_INFO    = 0x101;
        static final int SMB_QUERY_FILE_STANDARD_INFO = 0x102;
    
        class SmbQueryFileBasicInfo implements Info {
            long createTime;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        static final byte TRANS2_FIND_NEXT2             = (byte)0x02;
        static final byte TRANS2_QUERY_FS_INFORMATION   = (byte)0x03;
        static final byte TRANS2_QUERY_PATH_INFORMATION = (byte)0x05;
        static final byte TRANS2_GET_DFS_REFERRAL       = (byte)0x10;
        static final byte TRANS2_SET_FILE_INFORMATION   = (byte)0x08;
    
        static final int NET_SHARE_ENUM   = 0x0000;
        static final int NET_SERVER_ENUM2 = 0x0068;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        public static final int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that it is
        * 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;
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.3K bytes
    - Viewed (1)
  10. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformationResponse.java

     */
    
    package jcifs.smb1.smb1;
    
    class Trans2SetFileInformationResponse extends SmbComTransactionResponse {
    
        Trans2SetFileInformationResponse() {
            subCommand = SmbComTransaction.TRANS2_SET_FILE_INFORMATION;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeParametersWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.7K bytes
    - Viewed (0)
Back to top