summaryrefslogtreecommitdiff
path: root/common/src/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/utils.cpp')
-rw-r--r--common/src/utils.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/common/src/utils.cpp b/common/src/utils.cpp
index 94d644f..773b1f2 100644
--- a/common/src/utils.cpp
+++ b/common/src/utils.cpp
@@ -99,29 +99,6 @@ int mutable_array_index_elem(struct mutable_array *array, int index)
}
/******************************************************************************
- * sids
- ******************************************************************************/
-
-void sids_copy(struct sids *dst, struct sids *src)
-{
- if (dst && src)
- {
- dst->num = src->num;
- memcpy(dst->elems, src->elems, sizeof(dst->elems[0]) * dst->num);
- }
-}
-
-/******************************************************************************
- * route_ctx
- ******************************************************************************/
-
-void route_ctx_copy(struct route_ctx *dst, struct route_ctx *src)
-{
- memcpy(dst->data, src->data, src->len);
- dst->len = src->len;
-}
-
-/******************************************************************************
* device
******************************************************************************/