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