Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CFT_ERR (0.36 sec)

  1. src/main/java/jcifs/netbios/NbtException.java

        public static final int RFS_ERR = 0x5;
        /** Active error in the name service */
        public static final int ACT_ERR = 0x6;
        /** Name in conflict error */
        public static final int CFT_ERR = 0x7;
    
        // session service error codes
        /** Connection refused by the remote host */
        public static final int CONNECTION_REFUSED = -1;
        /** Not listening on the called name */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtException.java

        public static final int RFS_ERR = 0x5;
        /** Active error in the name service */
        public static final int ACT_ERR = 0x6;
        /** Name in conflict error */
        public static final int CFT_ERR = 0x7;
    
        // session service error codes
        /** Connection refused by the remote host */
        public static final int CONNECTION_REFUSED = -1;
        /** Not listening on the called name */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NbtExceptionTest.java

                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.ACT_ERR, "ERR_NAM_SRVC/Unknown error code: 6"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.CFT_ERR, "ERR_NAM_SRVC/Unknown error code: 7"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, 99, "ERR_NAM_SRVC/Unknown error code: 99"), // Default case for name service
    
                    // ERR_SSN_SRVC
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top