~ubuntu-branches/ubuntu/oneiric/squid3/oneiric-security

« back to all changes in this revision

Viewing changes to src/adaptation/Iterator.h

  • Committer: Bazaar Package Importer
  • Author(s): Mahyuddin Susanto
  • Date: 2011-02-15 18:46:13 UTC
  • mfrom: (21.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110215184613-1u3dh5sz4i055flk
Tags: 3.1.10-1ubuntu1
* Merge from debian unstable. (LP: #719283)  Remaining changes:
  - debian/patches/18-fix-ftbfs-binutils-gold.dpatch: Add library linker into
    LIBS instead to LDFLAGS to fixing FTBFS binutils-gold.
* Drop Ubuntu configuration for ufw which landed in Debian and sync it: 
  - debian/squid3.ufw.profile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
class Iterator: public Initiate, public Initiator
22
22
{
23
23
public:
24
 
    Iterator(Adaptation::Initiator *anInitiator,
25
 
             HttpMsg *virginHeader, HttpRequest *virginCause,
 
24
    Iterator(HttpMsg *virginHeader, HttpRequest *virginCause,
26
25
             const Adaptation::ServiceGroupPointer &aGroup);
27
26
    virtual ~Iterator();
28
27
 
52
51
    ServicePlan thePlan; ///< which services to use and in what order
53
52
    HttpMsg *theMsg; ///< the message being adapted (virgin for each step)
54
53
    HttpRequest *theCause; ///< the cause of the original virgin message
55
 
    Adaptation::Initiate *theLauncher; ///< current transaction launcher
 
54
    CbcPointer<Adaptation::Initiate> theLauncher; ///< current transaction launcher
56
55
    int iterations; ///< number of steps initiated
57
56
    bool adapted; ///< whether the virgin message has been replaced
58
57