Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for 0x03 (0.13 sec)

  1. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        static final byte[] header = {
            (byte)0xFF, (byte)'S', (byte)'M', (byte)'B',
            (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,
            (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,
            (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,
            (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,
            (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00
        };
    
        static void writeInt2( long val, byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.D.2.txt

       0A72-0A74
       0A83
       0A85-0A8B
       0A8D
       0A8F-0A91
       0A93-0AA8
       0AAA-0AB0
       0AB2-0AB3
       0AB5-0AB9
       0ABD-0AC0
       0AC9
       0ACB-0ACC
       0AD0
       0AE0
       0AE6-0AEF
       0B02-0B03
       0B05-0B0C
       0B0F-0B10
       0B13-0B28
       0B2A-0B30
       0B32-0B33
       0B36-0B39
       0B3D-0B3E
       0B40
       0B47-0B48
       0B4B-0B4C
       0B57
       0B5C-0B5D
       0B5F-0B61
       0B66-0B70
       0B83
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int FLAGS_OBJECT_INHERIT = 0x01;
        /**
         * 
         */
        public static final int FLAGS_CONTAINER_INHERIT = 0x02;
        /**
         * 
         */
        public static final int FLAGS_NO_PROPAGATE = 0x04;
        /**
         * 
         */
        public static final int FLAGS_INHERIT_ONLY = 0x08;
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

                    isInConflict     = (( src[srcIndex + 16] & 0x08 ) == 0x08 ) ? true : false;
                    isActive         = (( src[srcIndex + 16] & 0x04 ) == 0x04 ) ? true : false;
                    isPermanent      = (( src[srcIndex + 16] & 0x02 ) == 0x02 ) ? true : false;
        
        /* The NbtAddress object used to query this node will be in the list
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

    public abstract class SessionServicePacket { 
    
        // session service packet types 
        static final int SESSION_MESSAGE = 0x00; 
        static final int SESSION_REQUEST = 0x81; 
        public static final int POSITIVE_SESSION_RESPONSE = 0x82; 
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83; 
        static final int SESSION_RETARGET_RESPONSE = 0x84; 
        static final int SESSION_KEEP_ALIVE = 0x85; 
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/SessionServicePacket.java

        // session service packet types
        static final int SESSION_MESSAGE = 0x00;
        static final int SESSION_REQUEST = 0x81;
    
        /**
         * 
         */
        public static final int POSITIVE_SESSION_RESPONSE = 0x82;
    
        /**
         * 
         */
        public static final int NEGATIVE_SESSION_RESPONSE = 0x83;
        static final int SESSION_RETARGET_RESPONSE = 0x84;
        static final int SESSION_KEEP_ALIVE = 0x85;
    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)
  7. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

                }
            } else {
                // no password in tree connect
                passwordLength = 1;
            }
    
            dst[dstIndex++] = disconnectTid ? (byte)0x01 : (byte)0x00;
            dst[dstIndex++] = (byte)0x00;
            writeInt2( passwordLength, dst, dstIndex );
            return 4;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

            }
            else {
                // no password in tree connect
                this.passwordLength = 1;
            }
    
            dst[ dstIndex++ ] = this.disconnectTid ? (byte) 0x01 : (byte) 0x00;
            dst[ dstIndex++ ] = (byte) 0x00;
            SMBUtil.writeInt2(this.passwordLength, dst, dstIndex);
            return 4;
        }
    
    
        @SuppressWarnings ( "deprecation" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/convert/BinaryConversionUtilTest.java

         * .
         */
        @Test
        public void testToBinary() {
            assertThat(BinaryConversionUtil.toBinary(null), nullValue());
            final byte[] b = { 0x00, 0x01 };
            assertThat(BinaryConversionUtil.toBinary(b), is(b));
            assertThat(BinaryConversionUtil.toBinary("hoge"), is("hoge".getBytes()));
        }
    
        /**
         * Test method for
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtException.java

    import java.io.IOException;
    
    public class NbtException extends IOException {
    
        // error classes
        public static final int SUCCESS = 0;
        public static final int ERR_NAM_SRVC = 0x01;
        public static final int ERR_SSN_SRVC = 0x02;
    
        // name service error codes
        public static final int FMT_ERR = 0x1;
        public static final int SRV_ERR = 0x2;
        public static final int IMP_ERR = 0x4;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.9K bytes
    - Viewed (0)
Back to top