Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 528 for Kuper (0.13 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java

        private int sid;
    
    
        /**
         * 
         * @param config
         * @param sid
         */
        public SmbComFindClose2 ( Configuration config, int sid ) {
            super(config, SMB_COM_FIND_CLOSE2);
            this.sid = sid;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            SMBUtil.writeInt2(this.sid, dst, dstIndex);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponse.java

     */
    public class Trans2SetFileInformationResponse extends SmbComTransactionResponse {
    
        /**
         * 
         * @param config
         */
        public Trans2SetFileInformationResponse ( Configuration config ) {
            super(config);
            this.setSubCommand(SmbComTransaction.TRANS2_SET_FILE_INFORMATION);
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        private int andxOffset = 0;
    
        private ServerMessageBlock andx;
    
    
        protected AndXServerMessageBlock ( Configuration config, byte command, String name, ServerMessageBlock andx ) {
            super(config, command, name);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java

        public static final int STATUS_SERVER_END_CLOSED = 4;
    
        private int available;
    
    
        /**
         * 
         * @param config
         */
        public TransPeekNamedPipeResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the available
         */
        public final int getAvailable () {
            return this.available;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java

    public class TransWaitNamedPipe extends SmbComTransaction {
    
        /**
         * 
         * @param config
         * @param pipeName
         */
        public TransWaitNamedPipe ( Configuration config, String pipeName ) {
            super(config, SMB_COM_TRANSACTION, TRANS_WAIT_NAMED_PIPE);
            this.name = pipeName;
            this.timeout = 0xFFFFFFFF;
            this.maxParameterCount = 0;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
    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)
  6. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

        private String nativeLanMan = "";
        private String primaryDomain = "";
    
        boolean isLoggedInAsGuest;
        byte[] blob = null;
    
        SmbComSessionSetupAndXResponse( ServerMessageBlock andx ) {
            super( andx );
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( 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
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComRename.java

    
        /**
         * 
         * @param config
         * @param oldFileName
         * @param newFileName
         */
        public SmbComRename ( Configuration config, String oldFileName, String newFileName ) {
            super(config, SMB_COM_RENAME);
            this.oldFileName = oldFileName;
            this.newFileName = newFileName;
            this.searchAttributes = SmbConstants.ATTR_HIDDEN | SmbConstants.ATTR_SYSTEM | SmbConstants.ATTR_DIRECTORY;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequest.java

        private int treeFlags;
        private String path;
    
    
        /**
         * @param config
         * @param path
         */
        public Smb2TreeConnectRequest ( Configuration config, String path ) {
            super(config, SMB2_TREE_CONNECT);
            this.path = path;
        }
    
    
        @Override
        protected Smb2TreeConnectResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2TreeConnectResponse> req ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

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

                                throws MalformedURLException, UnknownHostException {
            super( url );
            this.pipeType = pipeType;
            type = TYPE_NAMED_PIPE;
        }
        public SmbNamedPipe( String url, int pipeType, NtlmPasswordAuthentication auth )
                                throws MalformedURLException, UnknownHostException {
            super( url, auth );
            this.pipeType = pipeType;
            type = TYPE_NAMED_PIPE;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
Back to top