Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 181 for config (0.18 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponse.java

    public class TransTransactNamedPipeResponse extends SmbComTransactionResponse {
    
        private final byte[] outputBuffer;
    
    
        /**
         * @param config
         * @param inB
         */
        public TransTransactNamedPipeResponse ( Configuration config, byte[] inB ) {
            super(config);
            this.outputBuffer = inB;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        private int notifyFlags;
        private int completionFilter;
    
    
        /**
         * @param config
         * @param fileId
         */
        public Smb2ChangeNotifyRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_CHANGE_NOTIFY);
            this.outputBufferLength = config.getNotifyBufferSize();
            this.fileId = fileId;
        }
    
    
        /**
         * @param notifyFlags
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

        private int maxReferralLevel = 3;
    
        private final DfsReferralRequestBuffer request;
    
    
        /**
         * 
         * @param config
         * @param filename
         */
        public Trans2GetDfsReferral ( Configuration config, String filename ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL);
            this.request = new DfsReferralRequestBuffer(filename, 3);
            this.totalDataCount = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java

        private final DfsReferralResponseBuffer dfsResponse = new DfsReferralResponseBuffer();
    
    
        /**
         * 
         * @param config
         */
        public Trans2GetDfsReferralResponse ( Configuration config ) {
            super(config);
            this.setSubCommand(SmbComTransaction.TRANS2_GET_DFS_REFERRAL);
        }
    
    
        /**
         * @return the buffer
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java

        int fid;
        int securityInformation;
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param securityInformation
         */
        public NtTransQuerySecurityDesc ( Configuration config, int fid, int securityInformation ) {
            super(config, NT_TRANSACT_QUERY_SECURITY_DESC);
            this.fid = fid;
            this.securityInformation = securityInformation;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java

     *
     */
    public class Smb2CancelRequest extends ServerMessageBlock2 implements CommonServerMessageBlockRequest {
    
        /**
         * @param config
         * @param mid
         * @param asyncId
         */
        public Smb2CancelRequest ( Configuration config, long mid, long asyncId ) {
            super(config, SMB2_CANCEL);
            setMid(mid);
            setAsyncId(asyncId);
            if ( asyncId != 0 ) {
                addFlags(SMB2_FLAGS_ASYNC_COMMAND);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

    import org.bouncycastle.util.encoders.Base64;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Config;
    import jcifs.config.PropertyConfiguration;
    import jcifs.context.BaseContext;
    import jcifs.netbios.UniAddress;
    import jcifs.smb.NtStatus;
    import jcifs.smb.NtlmChallenge;
    import jcifs.smb.NtlmPasswordAuthentication;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

                    Config.getInt( "jcifs.smb1.netbios.lookupRespLimit", 3 );
        private static final String DOMAIN =
                    Config.getProperty("jcifs.smb1.smb.client.domain", null);
        private static final String USERNAME =
                    Config.getProperty("jcifs.smb1.smb.client.username", null);
        private static final int CACHE_POLICY =
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        private int lastNameOffset, lastNameBufferIndex;
        private String lastName;
        private int resumeKey;
    
    
        /**
         * 
         * @param config
         */
        public Trans2FindFirst2Response ( Configuration config ) {
            super(config, SMB_COM_TRANSACTION2, SmbComTransaction.TRANS2_FIND_FIRST2);
        }
    
    
        /**
         * @return the sid
         */
        public final int getSid () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        private byte shareType;
        private int shareFlags;
        private int capabilities;
        private int maximalAccess;
    
    
        /**
         * @param config
         */
        public Smb2TreeConnectResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon May 23 14:35:20 GMT 2022
    - 6.1K bytes
    - Viewed (0)
Back to top