Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SmbComLogoffAndX (0.11 sec)

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

     * previously established with a Session Setup AndX command.
     */
    public class SmbComLogoffAndX extends AndXServerMessageBlock {
    
        /**
         * Creates a new SMB1 logoff request to end a user session.
         *
         * @param config the CIFS configuration
         * @param andx the next command in the AndX chain, or null
         */
        public SmbComLogoffAndX(final Configuration config, final ServerMessageBlock andx) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComLogoffAndX.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class SmbComLogoffAndX extends AndXServerMessageBlock {
    
        SmbComLogoffAndX(final ServerMessageBlock andx) {
            super(andx);
            command = SMB_COM_LOGOFF_ANDX;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComLogoffAndXTest.java

        void readBytesWireFormatReturnsZero(int index) {
            SmbComLogoffAndX msg = new SmbComLogoffAndX(null);
            assertEquals(0, msg.readBytesWireFormat(new byte[15], index));
            assertEquals(0, msg.readBytesWireFormat(null, index));
        }
    
        @Test
        @DisplayName("toString formats correctly")
        void toStringFormatsCorrectly() {
            SmbComLogoffAndX msg = new SmbComLogoffAndX(null);
            String s = msg.toString();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top