DelayPool.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* DEBUG: section 77 Delay Pools */
10 
11 #ifndef SQUID_SRC_DELAYPOOL_H
12 #define SQUID_SRC_DELAYPOOL_H
13 
14 #if USE_DELAY_POOLS
15 #include "acl/forward.h"
16 #include "CompositePoolNode.h"
17 
18 class StoreEntry;
19 
20 class CommonPool;
21 
23 class DelayPool
24 {
25 
26 public:
27  DelayPool();
28  ~DelayPool();
29  void freeData();
30  void createPool(u_char delay_class);
31  void parse();
32  void dump (StoreEntry *, unsigned int poolNumberMinusOne) const;
35 
37 
39 
40 private:
42 };
43 
44 #endif /* USE_DELAY_POOLS */
45 #endif /* SQUID_SRC_DELAYPOOL_H */
46 
void dump(StoreEntry *, unsigned int poolNumberMinusOne) const
Definition: DelayPool.cc:42
void createPool(u_char delay_class)
Definition: DelayPool.cc:63
void parse()
Definition: DelayPool.cc:35
~DelayPool()
Definition: DelayPool.cc:25
void freeData()
Definition: DelayPool.cc:72
CompositePoolNode::Pointer theComposite()
Definition: DelayPool.h:34
CommonPool * pool
Definition: DelayPool.h:33
const CompositePoolNode::Pointer theComposite() const
Definition: DelayPool.h:36
CompositePoolNode::Pointer theComposite_
Definition: DelayPool.h:41
acl_access * access
Definition: DelayPool.h:38

 

Introduction

Documentation

Support

Miscellaneous