Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SRV_ERR (0.06 sec)

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

            case WACK -> "WACK";
            default -> Integer.toString(this.opCode);
            };
            resultCodeString = switch (this.resultCode) {
            case FMT_ERR -> "FMT_ERR";
            case SRV_ERR -> "SRV_ERR";
            case IMP_ERR -> "IMP_ERR";
            case RFS_ERR -> "RFS_ERR";
            case ACT_ERR -> "ACT_ERR";
            case CFT_ERR -> "CFT_ERR";
            default -> "0x" + Hexdump.toHexString(this.resultCode, 1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            case WACK -> "WACK";
            default -> Integer.toString(opCode);
            };
            resultCodeString = switch (resultCode) {
            case FMT_ERR -> "FMT_ERR";
            case SRV_ERR -> "SRV_ERR";
            case IMP_ERR -> "IMP_ERR";
            case RFS_ERR -> "RFS_ERR";
            case ACT_ERR -> "ACT_ERR";
            case CFT_ERR -> "CFT_ERR";
            default -> "0x" + Hexdump.toHexString(resultCode, 1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtException.java

        // name service error codes
        /** Format error in the name service */
        public static final int FMT_ERR = 0x1;
        /** Server error in the name service */
        public static final int SRV_ERR = 0x2;
        /** Implementation error in the name service */
        public static final int IMP_ERR = 0x4;
        /** Refused error in the name service */
        public static final int RFS_ERR = 0x5;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtException.java

        // name service error codes
        /** Format error in the name service */
        public static final int FMT_ERR = 0x1;
        /** Server error in the name service */
        public static final int SRV_ERR = 0x2;
        /** Implementation error in the name service */
        public static final int IMP_ERR = 0x4;
        /** Refused error in the name service */
        public static final int RFS_ERR = 0x5;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/netbios/NbtExceptionTest.java

                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.FMT_ERR, "ERR_NAM_SRVC/FMT_ERR: Format ErrorUnknown error code: 1"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.SRV_ERR, "ERR_NAM_SRVC/Unknown error code: 2"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/netbios/NameServicePacketTest.java

            packet.resultCode = NameServicePacket.SRV_ERR;
            packet.questionType = NameServicePacket.NBSTAT;
            packet.recordType = NameServicePacket.NBSTAT;
            expectedString =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
Back to top