Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for last (0.16 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                if ( ( msg.flags & DCERPC_LAST_FRAG ) != DCERPC_LAST_FRAG ) {
                    // all fragment but the last get written using read/write semantics
                    doSendFragment(out, off, msg.length);
                    off += fragSize;
                }
                else {
                    return off;
                }
            }
            throw new IOException();
        }
    
    
        /**
         * @param msg
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcConstants.java

        public static final UUID DCERPC_UUID_SYNTAX_NDR = new UUID("8a885d04-1ceb-11c9-9fe8-08002b104860");
    
        public static final int DCERPC_FIRST_FRAG = 0x01; /* First fragment */
        public static final int DCERPC_LAST_FRAG = 0x02; /* Last fragment */
        public static final int DCERPC_PENDING_CANCEL = 0x04; /* Cancel was pending at sender */
        public static final int DCERPC_RESERVED_1 = 0x08;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAlias.java

        public MsrpcGetMembersInAlias ( SamrAliasHandle aliasHandle, lsarpc.LsarSidArray sids ) {
            super(aliasHandle, sids);
            this.sids = sids;
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java

            }
        }
    
    
        public MsrpcShareEnum ( String server ) {
            super("\\\\" + server, 1, new srvsvc.ShareInfoCtr1(), -1, 0, 0);
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
    
        public FileEntry[] getEntries () {
            /*
             * The ShareInfo1 class does not implement the FileEntry
             * interface (because it is generated from IDL). Therefore
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbWatchHandle.java

         * it will return an empty list of changes.
         * 
         * @return changes since the last invocation
         * @throws CIFSException
         */
        List<FileNotifyInformation> watch () throws CIFSException;
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.concurrent.Callable#call()
         */
        @Override
        List<FileNotifyInformation> call () throws CIFSException;
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java

        DcerpcBind(DcerpcBinding binding, DcerpcHandle handle) {
            this.binding = binding;
            max_xmit = handle.max_xmit;
            max_recv = handle.max_recv;
            ptype = 11;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
        public int getOpnum() {
            return 0;
        }
        public void encode_in(NdrBuffer buf) throws NdrException {
            buf.enc_ndr_short(max_xmit);
            buf.enc_ndr_short(max_recv);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SID.java

        public SID getDomainSid () {
            return new SID(this, SID_TYPE_DOMAIN, this.domainName, null, getType() != SID_TYPE_DOMAIN);
        }
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        @Override
        public int getRid () {
            if ( getType() == SID_TYPE_DOMAIN )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DfsImpl.java

                do {
                    /*
                     * Store references to the map and key so that
                     * SmbFile.resolveDfs can re-insert the dr list with
                     * the dr that was successful so that subsequent
                     * attempts to resolve DFS use the last successful
                     * referral first.
                     */
                    tmp.setCacheMap(links.map);
                    tmp.setKey("\\");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResourceLocator.java

         *
         * @return The last component of the URL associated with this SMB
         *         resource or <code>smb://</code> if the resource is <code>smb://</code>
         *         itself.
         */
    
        String getName ();
    
    
        /**
         * 
         * @return dfs referral data
         */
        DfsReferralData getDfsReferral ();
    
    
        /**
         * Everything but the last component of the URL representing this SMB
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect4.java

        public MsrpcSamrConnect4(String server, int access, SamrPolicyHandle policyHandle) {
            super(server, 2, access, policyHandle);
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.1K bytes
    - Viewed (0)
Back to top