]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ip/stubQosConfig.cc
Merge from trunk
[thirdparty/squid.git] / src / ip / stubQosConfig.cc
1 #include "squid.h"
2
3 #include "ip/QosConfig.h"
4 #include "Store.h"
5
6
7 void
8 Ip::Qos::getTosFromServer(fde *clientFde, const int server_fd)
9 {
10 #if USE_QOS_TOS
11 fatal ("Not implemented");
12 #endif
13 }
14
15 void Ip::Qos::getNfmarkFromServer(const fde *clientFde, const fde *servFde, const int server_fd)
16 {
17 #if USE_QOS_NFMARK
18 fatal ("Not implemented");
19 #endif
20 }
21
22 #if USE_QOS_NFMARK
23 int
24 Ip::Qos::GetNfMarkCallback(enum nf_conntrack_msg_type type,
25 struct nf_conntrack *ct,
26 void *data)
27 {
28 fatal ("Not implemented");
29 }
30 #endif
31
32 tos_t
33 Ip::Qos::doTosLocalMiss(const int fd, const hier_code hierCode) const
34 {
35 fatal ("Not implemented");
36 }
37
38 int
39 Ip::Qos::doNfmarkLocalMiss(const int fd, const hier_code hierCode) const
40 {
41 fatal ("Not implemented");
42 }
43
44 int
45 Ip::Qos::doTosLocalHit(const int fd) const
46 {
47 fatal ("Not implemented");
48 }
49
50 int
51 Ip::Qos::doNfmarkLocalHit(const int fd) const
52 {
53 fatal ("Not implemented");
54 }
55
56 Ip::Qos::Config()
57 {
58 fatal ("Not implemented");
59 }
60
61 Ip::Qos::~Config()
62 {
63 fatal ("Not implemented");
64 }
65
66 void
67 Ip::Qos::parseConfigLine()
68 {
69 fatal ("Not implemented");
70 }
71
72 void
73 Ip::Qos::dumpConfigLine(char *entry, const char *name)
74 {
75 fatal ("Not implemented");
76 }
77
78 #if !_USE_INLINE_
79 #include "Qos.cci"
80 #endif