public SmbTrans2FindNotifyNextFinalResponsePacket CreateTrans2FindNotifyNextFinalResponse( CifsServerPerConnection connection, SmbTrans2FindNotifyNextRequestPacket request) { SmbTrans2FindNotifyNextFinalResponsePacket response = new SmbTrans2FindNotifyNextFinalResponsePacket(); 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; response.UpdateCountAndOffset(); return response; }
/// <summary> /// Deep copy constructor. /// </summary> public SmbTrans2FindNotifyNextFinalResponsePacket(SmbTrans2FindNotifyNextFinalResponsePacket packet) : base(packet) { this.InitDefaultValue(); }