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