Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SmbComLogoffAndX (0.16 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)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

                if (!inError && transport.server.security != SmbConstants.SECURITY_SHARE) {
                    /*
                     * Logoff And X Request / Response
                     */
    
                    final SmbComLogoffAndX request = new SmbComLogoffAndX(null);
                    request.uid = uid;
                    try {
                        transport.send(request, null);
                    } catch (final SmbException se) {}
                    uid = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                                .getServerData().security == SmbConstants.SECURITY_SHARE;
                        if (!shareSecurity) {
                            SmbComLogoffAndX request = new SmbComLogoffAndX(getConfig(), null);
                            request.setDigest(getDigest());
                            request.setUid(getUid());
                            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top