- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for NT_STATUS_ACCESS_DENIED (0.12 sec)
-
src/main/java/jcifs/smb/NtStatus.java
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; public static final int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
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/smb1/smb1/NtStatus.java
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; public static final int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
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/test/java/jcifs/tests/SessionTest.java
checkConnection(f); } catch ( SmbAuthException e ) { if ( e.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED ) { throw e; } Assume.assumeNoException(e); } } @Test public void logonGuest () throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
catch ( SmbUnsupportedOperationException e ) { Assume.assumeTrue("No Ntsmbs", false); } catch ( SmbException e ) { if ( e.getNtStatus() == NtStatus.NT_STATUS_ACCESS_DENIED || e.getNtStatus() == WinError.ERROR_ACCESS_DENIED ) { // we might not have permissions for that Assume.assumeTrue("No permission for share security accesss", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} log.trace("VALIDATE_NEGOTIATE_INFO returned error", e); if ( ( req.getResponse().isReceived() && req.getResponse().isVerifyFailed() ) || e.getNtStatus() == NtStatus.NT_STATUS_ACCESS_DENIED ) { // this is the signature error throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
throw e; } } catch ( SmbException se ) { log.trace("copyTo0", se); if ( se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED && se.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION ) { throw se; } } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
resp.errorCode = SmbException.getStatusByCode( resp.errorCode ); switch( resp.errorCode ) { case NtStatus.NT_STATUS_OK: break; case NtStatus.NT_STATUS_ACCESS_DENIED: case NtStatus.NT_STATUS_WRONG_PASSWORD: case NtStatus.NT_STATUS_LOGON_FAILURE: case NtStatus.NT_STATUS_ACCOUNT_RESTRICTION: case NtStatus.NT_STATUS_INVALID_LOGON_HOURS:
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
} switch ( resp.getErrorCode() ) { case NtStatus.NT_STATUS_OK: cont = true; break; case NtStatus.NT_STATUS_ACCESS_DENIED: case NtStatus.NT_STATUS_WRONG_PASSWORD: case NtStatus.NT_STATUS_LOGON_FAILURE: case NtStatus.NT_STATUS_ACCOUNT_RESTRICTION: case NtStatus.NT_STATUS_INVALID_LOGON_HOURS:
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/SmbFile.java
dest.mkdir(); dest.setPathInformation( attributes, createTime, lastModified ); } catch( SmbException se ) { if( se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED && se.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION ) { throw se; } } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)