- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for NT_STATUS_MORE_PROCESSING_REQUIRED (0.35 sec)
-
src/main/java/jcifs/smb/NtStatus.java
public static final int NT_STATUS_NO_SUCH_FILE = 0xC000000f; public static final int NT_STATUS_END_OF_FILE = 0xC0000011; public static final int NT_STATUS_MORE_PROCESSING_REQUIRED = 0xC0000016; public static final int NT_STATUS_ACCESS_DENIED = 0xC0000022; public static final int NT_STATUS_BUFFER_TOO_SMALL = 0xC0000023;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 10:09:29 UTC 2019 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
* * @see jcifs.internal.smb2.ServerMessageBlock2#isErrorResponseStatus() */ @Override protected boolean isErrorResponseStatus () { return getStatus() != NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED && super.isErrorResponseStatus(); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
public static final int NT_STATUS_NO_SUCH_DEVICE = 0xC000000e; public static final int NT_STATUS_NO_SUCH_FILE = 0xC000000f; public static final int NT_STATUS_MORE_PROCESSING_REQUIRED = 0xC0000016; public static final int NT_STATUS_ACCESS_DENIED = 0xC0000022; public static final int NT_STATUS_BUFFER_TOO_SMALL = 0xC0000023;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
else if ( !sessResponse.isReceived() || sessResponse.isError() || ( sessResponse.getStatus() != NtStatus.NT_STATUS_OK && sessResponse.getStatus() != NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED ) ) { throw e; } ex = e; response = sessResponse; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
checkReferral(resp, req.getPath(), req); case NtStatus.NT_STATUS_BUFFER_OVERFLOW: break; /* normal for DCERPC named pipes */ case NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED: break; /* normal for NTLMSSP */ default: if ( log.isDebugEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
throw dr; case 0x80000005: /* STATUS_BUFFER_OVERFLOW */ break; /* normal for DCERPC named pipes */ case NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED: break; /* normal for NTLMSSP */ default: throw new SmbException( resp.errorCode, null ); } if (resp.verifyFailed) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0)