Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for config (0.18 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

        private Encodable inputBuffer;
    
    
        /**
         * @param config
         */
        public Smb2QueryInfoRequest ( Configuration config ) {
            this(config, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
    
        /**
         * @param config
         * @param fileId
         */
        public Smb2QueryInfoRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_QUERY_INFO);
    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)
  2. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

    
        /**
         * 
         * @param config
         */
        public SmbComReadAndXResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * 
         * @param config
         * @param b
         * @param off
         */
        public SmbComReadAndXResponse ( Configuration config, byte[] b, int off ) {
            super(config);
            this.data = b;
            this.offset = off;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

        private Encodable info;
    
    
        /**
         * 
         * @param config
         */
        public Smb2SetInfoRequest ( Configuration config ) {
            this(config, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
    
        /**
         * @param config
         * @param fileId
         */
        public Smb2SetInfoRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_SET_INFO);
            this.fileId = fileId;
        }
    
    
    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)
  4. src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java

    import jcifs.internal.smb1.ServerMessageBlock;
    
    
    /**
     * 
     */
    public class SmbComBlankResponse extends ServerMessageBlock {
    
        /**
         * 
         * @param config
         */
        public SmbComBlankResponse ( Configuration config ) {
            super(config);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/Smb2EchoRequest.java

    
    /**
     * @author mbechler
     *
     */
    public class Smb2EchoRequest extends ServerMessageBlock2Request<Smb2EchoResponse> {
    
        /**
         * @param config
         */
        public Smb2EchoRequest ( Configuration config ) {
            super(config, SMB2_ECHO);
        }
    
    
        @Override
        protected Smb2EchoResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2EchoResponse> req ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java

    
    /**
     * @author mbechler
     *
     */
    public class SmbComSeekResponse extends ServerMessageBlock {
    
        private long offset;
    
    
        /**
         * @param config
         */
        public SmbComSeekResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the offset
         */
        public long getOffset () {
            return this.offset;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtCancel.java

    import jcifs.internal.smb1.ServerMessageBlock;
    
    
    /**
     * @author mbechler
     *
     */
    public class SmbComNtCancel extends ServerMessageBlock {
    
        /**
         * @param config
         */
        protected SmbComNtCancel ( Configuration config, int mid ) {
            super(config, SMB_COM_NT_CANCEL);
            setMid(mid);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb1.ServerMessageBlock#isCancel()
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

        private List<FileNotifyInformation> notifyInformation = new ArrayList<>();
    
    
        /**
         * 
         * @param config
         */
        public NtTransNotifyChangeResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the notifyInformation
         */
        @Override
        public final List<FileNotifyInformation> getNotifyInformation () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

     * 
     */
    public class NetShareEnum extends SmbComTransaction {
    
        private static final String DESCR = "WrLeh\u0000B13BWz\u0000";
    
    
        /**
         * 
         * @param config
         */
        public NetShareEnum ( Configuration config ) {
            super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM);
            this.name = new String("\\PIPE\\LANMAN");
            this.maxParameterCount = 8;
    
            // maxDataCount = 4096; why was this set?
    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)
  10. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java

        private byte[] pipeData;
        private int pipeDataOff, pipeDataLen;
    
    
        /**
         * 
         * @param config
         * @param pipeName
         * @param data
         * @param off
         * @param len
         */
        public TransCallNamedPipe ( Configuration config, String pipeName, byte[] data, int off, int len ) {
            super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE);
            this.name = pipeName;
            this.pipeData = data;
    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)
Back to top