Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for WORKSTATION (0.72 sec)

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

                "No process is on the other end of the pipe.", "More data is available.", "This user account has expired.",
                "The user is not allowed to log on from this workstation.", "The user is not allowed to log on at this time.",
                "The password of this user has expired.", };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/NetbiosNameTest.java

            when(mockNetbiosName.getName()).thenReturn(mixedCase);
            assertEquals(mixedCase, mockNetbiosName.getName());
        }
    
        @Test
        @DisplayName("Should handle workstation service type")
        void testWorkstationServiceType() {
            // Given
            int workstationType = 0x00;
            when(mockNetbiosName.getNameType()).thenReturn(workstationType);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            // Assert
            assertTrue(result >= NameServicePacket.HEADER_LENGTH);
        }
    
        @Test
        void integration_writeAndReadComplete() {
            // Arrange
            Name realName = new Name(mockConfig, "WORKSTATION", 0x00, null);
            nodeStatusRequest = new NodeStatusRequest(mockConfig, realName);
            nodeStatusRequest.nameTrnId = 0x1234;
    
            byte[] buffer = new byte[512];
    
            // Act - Write
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

        }
    
        private static Stream<Arguments> provideNamesForWriteTest() {
            return Stream.of(Arguments.of("SERVER", 0x20, "CLIENT", 0x00), Arguments.of("WORKSTATION", 0x00, "USER", 0x03),
                    Arguments.of("DOMAIN", 0x1B, "BROWSER", 0x1D), Arguments.of("A", 0x20, "B", 0x00),
                    Arguments.of("VERYLONGNAMETEST", 0x20, "ANOTHERLONGNAME", 0x00));
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            // Number of names
            src[srcIndex] = 0x03; // 3 names
    
            // First name entry (18 bytes)
            String name1 = "WORKSTATION     ";
            System.arraycopy(name1.getBytes("US-ASCII"), 0, src, srcIndex + 1, 16);
            src[srcIndex + 16] = 0x00; // hex code
            src[srcIndex + 17] = 0x04; // flags: active
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            int[] versionMajors = { 6, 10, 10 };
            int[] versionMinors = { 1, 0, 0 };
            int[] serverTypes = { 0x00000801, 0x00000809, 0x0000101B }; // Various server types
            String[] comments = { "Workstation", "File server", "Domain Controller" };
    
            // Set converter and number of entries
            setConverter(response, 0);
            setNumEntries(response, numServers);
    
            // Calculate total buffer size
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top