Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Post (0.16 sec)

  1. src/main/java/jcifs/NetbiosAddress.java

         *             if the host cannot be resolved to find out.
         */
        boolean isActive ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Determines if this address is set to be permanent.
         * 
         * @param tc
         *            context to use
         * @return whether this address is permanent
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Handler.java

        protected void parseURL ( URL u, String spec, int start, int limit ) {
            String host = u.getHost();
            String path, ref;
            int port;
    
            if ( spec.equals("smb://") ) {
                spec = "smb:////";
                limit += 2;
            }
            else if ( spec.startsWith("smb://") == false && host != null && host.length() == 0 ) {
                spec = "//" + spec;
                limit += 2;
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 09:14:24 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Address.java

         * @param type
         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         * 
         * @return the ip address
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

     *
     */
    public interface DfsReferralDataInternal extends DfsReferralData {
    
        /**
         * Replaces the host with the given FQDN if it is currently unqualified
         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbTransport.java

         */
        @Override
        public void close ();
    
    
        /**
         * @return the connected address
         */
        Address getRemoteAddress ();
    
    
        /**
         * @return the connected host name
         */
        String getRemoteHostName ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/av/AvPair.java

        /**
         * Flags type
         */
        public static final int MsvAvFlags = 0x6;
    
        /**
         * Timestamp type
         */
        public static final int MsvAvTimestamp = 0x7;
    
        /**
         * Single host type
         */
        public static final int MsvAvSingleHost = 0x08;
    
        /**
         * Target name type
         */
        public static final int MsvAvTargetName = 0x09;
    
        /**
         * Channel bindings type
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/DialectVersion.java

         */
        public boolean atLeast ( DialectVersion v ) {
            return ordinal() >= v.ordinal();
        }
    
    
        /**
         * 
         * @param v
         * @return whether this version is a most the given one
         */
        public boolean atMost ( DialectVersion v ) {
            return ordinal() <= v.ordinal();
        }
    
    
        /**
         * 
         * @param a
         * @param b
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/mime.map

    application/font-tdpfr         pfr              # TrueDoc Portable Font Resource
    application/futuresplash       spl              # Macromedia Flash
    application/hep                hep              # Hummingbird Host Explorer Profiles
    application/lotus-123          wks              # Lotus 123
    application/mac-binhex40       hqx              # Macintosh binhexed archives
    application/mspowerpoint       ppt              # Microsoft Powerpoint
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                } else {
        
                    /* On NT without Unicode the fileNameLength
                     * includes the '\0' whereas on win98 it doesn't. I
                     * guess most clients only support non-unicode so
                     * they don't run into this.
                     */
        
        /* UPDATE: Maybe not! Could this be a Unicode alignment issue. I hope
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

        public NetbiosAddress getNbtByName ( String host ) throws UnknownHostException {
            return this.nscl.getNbtByName(host);
        }
    
    
        @Override
        public NetbiosAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException {
            return this.nscl.getNbtByName(host, type, scope);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
Back to top