/// <summary> /// Deep copy constructor. /// </summary> public SmbCloseAndTreeDiscResponsePacket(SmbCloseAndTreeDiscResponsePacket packet) : base(packet) { this.InitDefaultValue(); }
public SmbCloseAndTreeDiscResponsePacket CreateCloseAndTreeDiscResponse( CifsServerPerConnection connection, SmbCloseAndTreeDiscRequestPacket request) { SmbCloseAndTreeDiscResponsePacket response = new SmbCloseAndTreeDiscResponsePacket(); SmbHeader smbHeader = CifsMessageUtils.CreateSmbHeader(connection, request); if ((smbHeader.Flags2 & SmbFlags2.SMB_FLAGS2_NT_STATUS) == SmbFlags2.SMB_FLAGS2_NT_STATUS) { smbHeader.Status = (uint)NtStatus.STATUS_NOT_IMPLEMENTED; } else { SmbStatus smbStatus = new SmbStatus(); smbStatus.ErrorClass = SmbErrorClass.ERRDOS; smbStatus.Reserved = 0; smbStatus.ErrorCode = (ushort)SmbErrorCodeOfERRDOS.ERRbadfunc; smbHeader.Status = smbStatus; } response.SmbHeader = smbHeader; return response; }