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