summaryrefslogtreecommitdiff
path: root/common/native/tcutils/include/tcutils/tcutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/native/tcutils/include/tcutils/tcutils.h')
-rw-r--r--common/native/tcutils/include/tcutils/tcutils.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/common/native/tcutils/include/tcutils/tcutils.h b/common/native/tcutils/include/tcutils/tcutils.h
deleted file mode 100644
index a8ec2e87..00000000
--- a/common/native/tcutils/include/tcutils/tcutils.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2022 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#pragma once
-
-#include <cstdint>
-#include <linux/rtnetlink.h>
-
-namespace android {
-
-int isEthernet(const char *iface, bool &isEthernet);
-
-int doTcQdiscClsact(int ifIndex, uint16_t nlMsgType, uint16_t nlMsgFlags);
-
-static inline int tcAddQdiscClsact(int ifIndex) {
- return doTcQdiscClsact(ifIndex, RTM_NEWQDISC, NLM_F_EXCL | NLM_F_CREATE);
-}
-
-static inline int tcReplaceQdiscClsact(int ifIndex) {
- return doTcQdiscClsact(ifIndex, RTM_NEWQDISC, NLM_F_CREATE | NLM_F_REPLACE);
-}
-
-static inline int tcDeleteQdiscClsact(int ifIndex) {
- return doTcQdiscClsact(ifIndex, RTM_DELQDISC, 0);
-}
-
-int tcAddBpfFilter(int ifIndex, bool ingress, uint16_t prio, uint16_t proto,
- const char *bpfProgPath);
-int tcAddIngressPoliceFilter(int ifIndex, uint16_t prio, uint16_t proto,
- unsigned rateInBytesPerSec,
- const char *bpfProgPath);
-int tcDeleteFilter(int ifIndex, bool ingress, uint16_t prio, uint16_t proto);
-
-} // namespace android