Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NtTransQuerySecurityDesc (0.17 sec)

  1. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java

    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public class NtTransQuerySecurityDesc extends SmbComNtTransaction {
    
        int fid;
        int securityInformation;
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param securityInformation
         */
        public NtTransQuerySecurityDesc ( Configuration config, int fid, int securityInformation ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import jcifs.smb1.util.Hexdump;
    
    class NtTransQuerySecurityDesc extends SmbComNtTransaction {
    
        int fid;
        int securityInformation;
    
        NtTransQuerySecurityDesc( int fid, int securityInformation ) {
            this.fid = fid;
            this.securityInformation = securityInformation;
            command = SMB_COM_NT_TRANSACT;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

    import jcifs.internal.RequestWithPath;
    import jcifs.internal.dfs.DfsReferralDataInternal;
    import jcifs.internal.smb1.com.SmbComClose;
    import jcifs.internal.smb1.com.SmbComFindClose2;
    import jcifs.internal.smb1.trans.nt.NtTransQuerySecurityDesc;
    import jcifs.util.transport.TransportException;
    
    
    /**
     * This class encapsulates the logic for switching tree connections
     * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            f = open0( O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0 );
    
            /*
             * NtTrans Query Security Desc Request / Response
             */
    
            NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc( f, 0x04 );
            NtTransQuerySecurityDescResponse response = new NtTransQuerySecurityDescResponse();
    
            try {
                send( request, response );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                /*
                 * NtTrans Query Security Desc Request / Response
                 */
                NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc(getContext().getConfig(), f.getFid(), types);
                response = th.send(request, response, RequestParam.NO_RETRY);
                return response.getSecurityDescriptor();
            }
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top