Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for SET (0.22 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

         * following are equivalent:
         * proto:\\ts0.win.net[endpoint=\pipe\srvsvc]
         * proto:ts0.win.net[\pipe\srvsvc]
         *
         * If the server is absent it is set to "127.0.0.1"
         */ 
        protected static DcerpcBinding parseBinding(String str) throws DcerpcException {
            int state, mark, si;
            char[] arr = str.toCharArray();
            String proto = null, key = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

     *
     * @see java.io.File
     */
    
    public class SmbFile extends URLConnection implements SmbResource, SmbConstants {
        protected static final int ATTR_GET_MASK = 0x7FFF;
        protected static final int ATTR_SET_MASK = 0x30A7;
        protected static final int DEFAULT_ATTR_EXPIRATION_PERIOD = 5000;
    
        protected static final int HASH_DOT = ".".hashCode();
        protected static final int HASH_DOT_DOT = "..".hashCode();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            try {
                negotiate( port, resp );
            } catch( ConnectException ce ) {
                // Try an alternate port if there was an issue communicating to the server
                // Only set the alternate port to the port property if it was successful
                int altPort = (port == 0 || port == DEFAULT_PORT) ? 139 : DEFAULT_PORT;
                negotiate( altPort, resp );
                port = altPort;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            try {
                this.setRequestMethod(this.connection.getRequestMethod());
            }
            catch ( ProtocolException e ) {
                throw new RuntimeCIFSException("Failed to set request method", e);
            }
            this.headerFields = null;
            for ( Entry<String, List<String>> property : this.connection.getRequestProperties().entrySet() ) {
                String key = property.getKey();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         * @return lmhosts file to use
         */
        String getLmHostsFileName ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.scope</tt> (string)
         * 
         * @return default netbios scope to set in requests
         */
        String getNetbiosScope ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.snd_buf_size</tt> (int, default 576)
         * 
         * @return netbios send buffer size
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                    }
                    else {
                        dc = nameServiceClient.getByName(server, possibleWorkgroup);
                    }
    
                    req.getSession(); /* ensure session id is set for cluster env. */
                    challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                    } else {
                        dc = UniAddress.getByName( server, possibleWorkgroup );
                    }
    
                    req.getSession(); /* ensure session id is set for cluster env. */
                    challenge = SmbSession.getChallenge( dc );
                    if(( ntlm = NtlmSsp.authenticate( req, resp, challenge )) == null ) {
                        return;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

        /**
         * @param data
         *            the data to set
         * @param offset
         * @param length
         */
        public void setData ( byte[] data, int offset, int length ) {
            this.data = data;
            this.dataOffset = offset;
            this.dataLength = length;
        }
    
    
        /**
         * @param remainingBytes
         *            the remainingBytes to set
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        }
    
    
        /**
         * @param maxBufferSize
         *            the maxBufferSize to set
         */
        public final void setMaxBufferSize ( int maxBufferSize ) {
            this.maxBufferSize = maxBufferSize;
        }
    
    
        /**
         * @param maxDataCount
         *            the maxDataCount to set
         */
        public final void setMaxDataCount ( int maxDataCount ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

         *            the subCommand to set
         */
        public final void setSubCommand ( byte subCommand ) {
            this.subCommand = subCommand;
        }
    
    
        /**
         * @return the status
         */
        public final int getStatus () {
            return this.status;
        }
    
    
        /**
         * @param status
         *            the status to set
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 9.2K bytes
    - Viewed (0)
Back to top