~chtsanti/squid/icap-max-connections

« back to all changes in this revision

Viewing changes to src/ufsdump.cc

  • Committer: Christos Tsantilas
  • Date: 2009-04-11 09:00:59 UTC
  • mfrom: (9294.1.333 trunk)
  • Revision ID: chtsanti@users.sourceforge.net-20090411090059-8n47p1kyy1cqfqkn
MergeĀ FromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
#include <cassert>
46
46
 
47
47
/* stub functions for parts of squid not factored to be dynamic yet */
48
 
void shut_down(int)
49
 
{}
50
 
 
51
 
void
52
 
reconfigure(int)
53
 
{}
54
 
 
55
 
#if WHENITMINIMAL
56
48
void
57
49
eventAdd(const char *name, EVH * func, void *arg, double when, int, bool cbdata)
58
50
{}
59
51
 
60
 
#endif
 
52
// required by storeKeyPublicByRequest*
 
53
// XXX: what pulls in storeKeyPublicByRequest?
 
54
const char *urlCanonical(HttpRequest *) { assert(false); return NULL; }
 
55
 
 
56
void
 
57
storeAppendPrintf(StoreEntry * e, const char *fmt,...)
 
58
{
 
59
    va_list args;
 
60
    va_start(args, fmt);
 
61
 
 
62
    assert(false);
 
63
 
 
64
    va_end(args);
 
65
}
 
66
 
 
67
#include "CacheManager.h"
 
68
CacheManager*
 
69
CacheManager::GetInstance()
 
70
{
 
71
    assert(false);
 
72
    return NULL;
 
73
}
 
74
 
 
75
void
 
76
CacheManager::registerAction(char const * action, char const * desc, OBJH * handler, int pw_req_flag, int atomic) {}
 
77
 
 
78
 
61
79
/* end stub functions */
62
80
 
63
81
struct MetaStd {