Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for flag (0.13 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

    
        /**
         * Just bypasses TransWaitNamedPipe - used by DCERPC bind.
         * 
         * @param b
         * @param off
         * @param len
         * @param flags
         * @throws IOException
         */
        public void writeDirect ( byte[] b, int off, int len, int flags ) throws IOException {
            if ( len <= 0 ) {
                return;
            }
    
            if ( this.tmp == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            while ( fields.hasMoreElements() ) {
                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields);
    
                switch ( tagged.getTagNo() ) {
                case 0: // Ticket Flags
                    break;
                case 1: // Key
                    break;
                case 2: // Realm
                    DERGeneralString derRealm = ASN1Util.as(DERGeneralString.class, tagged);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            String[] arr = new String[4];
            dr.ttl = ref.getTtl();
            dr.rflags = ref.getRFlags();
            dr.expiration = expire;
            if ( ( dr.rflags & Trans2GetDfsReferralResponse.FLAGS_NAME_LIST_REFERRAL ) == Trans2GetDfsReferralResponse.FLAGS_NAME_LIST_REFERRAL ) {
                String[] expandedNames = ref.getExpandedNames();
                if ( expandedNames.length > 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                                   * UniAddress calls always use this
                                   * because it specifies addr
                                   */
                request.addr = addr; /* if addr ends with 255 flag it bcast */
                request.isBroadcast = isBroadcastAddress(addr);
    
                int n = this.transportContext.getConfig().getNetbiosRetryCount();
                do {
                    try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top