Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for Berger (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/DfsReferral.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Map;
    
    public class DfsReferral extends SmbException {
    
        public int pathConsumed;
        public long ttl;
        public String server;   // Server
        public String share;    // Share
        public String link;
        public String path;     // Path relative to tree from which this referral was thrown
        public boolean resolveHashes;
        public long expiration;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SidResolver.java

         * 
         * @param tc
         *            context to use
         * @param authorityServerName
         *            The hostname of the server that should be queried. For maximum efficiency this should be the hostname
         *            of a domain controller however a member server will work as well and a domain controller may not
         *            return names for SIDs corresponding to local accounts for which the domain controller is not an
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/RequestWithPath.java

    
        /**
         * @param path
         */
        void setPath ( String path );
    
    
        /**
         * 
         * @param domain
         * @param server
         * @param fullPath
         */
        void setFullUNCPath ( String domain, String server, String fullPath );
    
    
        /**
         * @param resolve
         * 
         */
        void setResolveInDfs ( boolean resolve );
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbPipeInputStream.java

         * return 0 for streams connected to regular files. However, a
         * stream created from a Named Pipe this method will query the server using a
         * "peek named pipe" operation and return the number of available bytes
         * on the server.
         */
        @Override
        public int available () throws IOException {
            try ( SmbFileHandleImpl fd = this.handle.ensureOpen();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:12:23 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/Pac.java

                        break;
                    case PacConstants.SERVER_CHECKSUM:
                        // PAC Server Signature
                        if ( this.serverSignature == null ) {
                            this.serverSignature = new PacSignature(bufferData);
                            if ( log.isDebugEnabled() ) {
                                log.debug(
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                try {
                    if ( query != null ) {
                        String server = queryLookup(query, "server");
                        if ( server != null && server.length() > 0 ) {
                            this.addresses = new UniAddress[1];
                            this.addresses[ 0 ] = this.ctx.getNameServiceClient().getByName(server);
                        }
                        String address = queryLookup(query, "address");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java

     */
    
    package jcifs.dcerpc.msrpc;
    
    
    @SuppressWarnings ( "javadoc" )
    public class MsrpcLsarOpenPolicy2 extends lsarpc.LsarOpenPolicy2 {
    
        public MsrpcLsarOpenPolicy2 ( String server, int access, LsaPolicyHandle policyHandle ) {
            super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle);
            this.object_attributes.length = 24;
            lsarpc.LsarQosInfo qos = new lsarpc.LsarQosInfo();
            qos.length = 12;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                            // verify the server signature here, this is not done automatically as we don't set the
                            // request digest
                            // Ignore a missing signature for SMB < 3.0, as
                            // - the specification does not clearly require that (it does for SMB3+)
                            // - there seem to be server implementations (known: EMC Isilon) that do not sign the final
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/PacLogonInfo.java

                // Skip some reserved fields (User Session Key)
                pacStream.skipBytes(16);
    
                // Server related strings as UnicodeStrings
                PacUnicodeString serverNameString = pacStream.readUnicodeString();
                PacUnicodeString domainNameString = pacStream.readUnicodeString();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "The SAM database on the Windows NT Server does not have a computer account for this workstation trust relationship.",
            "The trust relationship between the primary domain and the trusted domain failed.",
            "The account used is a Computer Account. Use your global user account or local user account to access this server.",
            "The user must change his password before he logs on the first time.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
Back to top