Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for service (0.16 sec)

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

            }
        }
    
        SmbComTreeConnectAndX( SmbSession session, String path,
                                    String service, ServerMessageBlock andx ) {
            super( andx );
            this.session = session;
            this.path = path;
            this.service = service;
            command = SMB_COM_TREE_CONNECT_ANDX;
        }
    
        int getBatchLimit( byte command ) {
            int c = (int)( command & 0xFF );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NetbiosAddress.java

     * names by broadcasting a query, directing queries to a server such as
     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
     * Windows command prompt you can see
     * what names a host registers with the nbtstat command.
     * <p>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/PACTest.java

            // kerberos mech token with ticket for fake service, RC4 service key in keyTab above
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            return this.max_recv;
        }
    
    
        /**
         * @return the max_xmit
         */
        int getMaxXmit () {
            return this.max_xmit;
        }
    
    
        /**
         * Get a handle to a service
         * 
         * @param url
         * @param tc
         *            context to use
         * @return a DCERPC handle for the given url
         * @throws MalformedURLException
         * @throws DcerpcException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/SessionServicePacket.java

     */
    
    package jcifs.netbios;
    
    
    import java.io.IOException;
    import java.io.InputStream;
    
    
    /**
     *
     */
    public abstract class SessionServicePacket {
    
        // session service packet types
        static final int SESSION_MESSAGE = 0x00;
        static final int SESSION_REQUEST = 0x81;
    
        /**
         * 
         */
        public static final int POSITIVE_SESSION_RESPONSE = 0x82;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

        private boolean supportSearchBits, shareIsInDfs;
        private String service, nativeFileSystem = "";
    
    
        /**
         * 
         * @param config
         * @param andx
         */
        public SmbComTreeConnectAndXResponse ( Configuration config, ServerMessageBlock andx ) {
            super(config, andx);
        }
    
    
        /**
         * @return the service
         */
        @Override
        public final String getService () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/WinError.java

        public static final int ERROR_SERVICE_NOT_INSTALLED = 2184;
        public static final int ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
    
        static final int[] WINERR_CODES = {
            ERROR_SUCCESS, ERROR_ACCESS_DENIED, ERROR_REQ_NOT_ACCEP, ERROR_BAD_PIPE, ERROR_PIPE_BUSY, ERROR_NO_DATA, ERROR_PIPE_NOT_CONNECTED,
            ERROR_MORE_DATA, ERROR_SERVICE_NOT_INSTALLED, ERROR_NO_BROWSER_SERVERS_FOUND,
        };
    
    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)
  8. src/main/java/jcifs/smb1/http/NtlmSsp.java

         * Calls the static {@link #authenticate(HttpServletRequest,
         * HttpServletResponse, byte[])} method to perform NTLM authentication
         * for the specified servlet request.
         *
         * @param req The request being serviced.
         * @param resp The response.
         * @param challenge The domain controller challenge.
         * @throws IOException If an IO error occurs.
         * @throws ServletException If an error occurs.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (1)
  9. src/main/java/jcifs/smb/Kerb5Context.java

                this.serviceName = manager.createName(service + "@" + host, GSSName.NT_HOSTBASED_SERVICE, mechOid);
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Service name is " + this.serviceName);
            }
    
            if ( name != null ) {
                this.clientName = manager.createName(name, GSSName.NT_USER_NAME, mechOid);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/DosError.java

            "The network name cannot be found.",
            "Not enough storage is available to process this command.",
            "The media is write protected.",
            "The device is not ready.",
            "A device attached to the system is not functioning.",
            "A device attached to the system is not functioning.",
            "The process cannot access the file because it is being used by another process.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
Back to top