- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for RFS_ERR (0.06 seconds)
-
src/main/java/jcifs/netbios/NameServicePacket.java
}; 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); }; questionTypeString = switch (this.questionType) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
}; 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); }; questionTypeString = switch (questionType) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.6K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NbtException.java
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; /** 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 codesCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
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; /** 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 codesCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
src/test/java/jcifs/netbios/NbtExceptionTest.java
Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"), Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.RFS_ERR, "ERR_NAM_SRVC/Unknown error code: 5"), Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.ACT_ERR, "ERR_NAM_SRVC/Unknown error code: 6"),
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.9K bytes - Click Count (0)