Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for letoff (0.15 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java

        /**
         * 
         * @param config
         * @param andx
         */
        public SmbComLogoffAndX ( Configuration config, ServerMessageBlock andx ) {
            super(config, SMB_COM_LOGOFF_ANDX, andx);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComLogoffAndX.java

     */
    
    package jcifs.smb1.smb1;
    
    class SmbComLogoffAndX extends AndXServerMessageBlock {
    
        SmbComLogoffAndX( ServerMessageBlock andx ) {
            super( andx );
            command = SMB_COM_LOGOFF_ANDX;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.5K bytes
    - Viewed (0)
Back to top