Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for startsWith (0.17 sec)

  1. src/main/java/jcifs/netbios/Lmhosts.java

                            }
                        }
                    }
                    else if ( line.startsWith("#BEGIN_ALTERNATE") ) {}
                    else if ( line.startsWith("#END_ALTERNATE") && this.alt > 0 ) {
                        throw new IOException("no lmhosts alternate includes loaded");
                    }
                }
                else if ( Character.isDigit(line.charAt(0)) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmSsp.java

                HttpServletRequest req, HttpServletResponse resp, byte[] challenge)
                        throws IOException, ServletException {
            String msg = req.getHeader("Authorization");
            if (msg != null && msg.startsWith("NTLM ")) {
                byte[] src = Base64.decode(msg.substring(5));
                if (src[8] == 1) {
                    Type1Message type1 = new Type1Message(src);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

                    throw sae;
                } catch( SmbException se ) {
                    fp = 0L;
                }
            }
            if( file instanceof SmbNamedPipe && file.unc.startsWith( "\\pipe\\" )) {
                file.unc = file.unc.substring( 5 );
                file.send( new TransWaitNamedPipe( "\\pipe" + file.unc ),
                                            new TransWaitNamedPipeResponse() );
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 9.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Handler.java

            String host = u.getHost();
            String path, ref;
            int port;
    
            if( spec.equals( "smb1://" )) {
                spec = "smb1:////";
                limit += 2;
            } else if( spec.startsWith( "smb1://" ) == false &&
                        host != null && host.length() == 0 ) {
                spec = "//" + spec;
                limit += 2;
            }
            super.parseURL( u, spec, start, limit );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmSsp.java

                throws IOException {
            String msg = req.getHeader("Authorization");
            if ( msg != null && msg.startsWith("NTLM ") ) {
                byte[] src = Base64.decode(msg.substring(5));
                if ( src[ 8 ] == 1 ) {
                    Type1Message type1 = new Type1Message(src);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

        }
    
        void setOption(String key, Object val) throws DcerpcException {
            if (key.equals("endpoint")) {
                endpoint = val.toString();
                String lep = endpoint.toLowerCase();
                if (lep.startsWith("\\pipe\\")) {
                    String iface = (String)INTERFACES.get(lep.substring(6));
                    if (iface != null) {
                        int c, p;
                        c = iface.indexOf(':');
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmServlet.java

            Address dc;
            boolean offerBasic = this.enableBasic && ( this.insecureBasic || request.isSecure() );
            String msg = request.getHeader("Authorization");
            if ( msg != null && ( msg.startsWith("NTLM ") || ( offerBasic && msg.startsWith("Basic ") ) ) ) {
                if ( this.loadBalance ) {
                    dc = new UniAddress(getTransportContext().getNameServiceClient().getNbtByName(this.domainController, 0x1C, null));
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            if ( key.equals("endpoint") ) {
                this.endpoint = val.toString();
                String lep = this.endpoint.toLowerCase(Locale.ENGLISH);
                if ( lep.startsWith("\\pipe\\") ) {
                    String iface = INTERFACES.get(lep.substring(6));
                    if ( iface != null ) {
                        int c, p;
                        c = iface.indexOf(':');
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                                if( line.startsWith( "#END_ALTERNATE" )) {
                                    break;
                                }
                            }
                        } else {
                            populate( new InputStreamReader( new SmbFileInputStream( url )));
                        }
                    } else if( line.startsWith( "#BEGIN_ALTERNATE" )) {
                        alt++;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NtlmServlet.java

            boolean offerBasic = enableBasic &&
                    (insecureBasic || request.isSecure());
            String msg = request.getHeader("Authorization");
            if (msg != null && (msg.startsWith("NTLM ") ||
                        (offerBasic && msg.startsWith("Basic ")))) {
                if( loadBalance ) {
                    dc = new UniAddress( NbtAddress.getByName( domainController, 0x1C, null ));
                } else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
Back to top