[PATCH 1/2] Remove unused function

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-net-gprs@lists.osmocom.org/.

msuraev at sysmocom.de msuraev at sysmocom.de
Mon Aug 8 16:10:18 UTC 2016


From: Max <msuraev at sysmocom.de>

---
 ggsn/ggsn.c |  1 -
 gtp/pdp.c   | 11 -----------
 gtp/pdp.h   |  1 -
 3 files changed, 13 deletions(-)

diff --git a/ggsn/ggsn.c b/ggsn/ggsn.c
index 7725016..6866901 100644
--- a/ggsn/ggsn.c
+++ b/ggsn/ggsn.c
@@ -154,7 +154,6 @@ int create_context_ind(struct pdp_t *pdp)
 
 	pdp->eua.l = 0;		/* TODO: Indicates dynamic IP */
 
-	/* ulcpy(&pdp->qos_neg, &pdp->qos_req, sizeof(pdp->qos_req.v)); */
 	memcpy(pdp->qos_neg0, pdp->qos_req0, sizeof(pdp->qos_req0));
 	memcpy(&pdp->pco_neg, &pco, sizeof(pdp->pco_neg));
 
diff --git a/gtp/pdp.c b/gtp/pdp.c
index f0d6adf..f297af9 100644
--- a/gtp/pdp.c
+++ b/gtp/pdp.c
@@ -370,14 +370,3 @@ void pdp_set_imsi_nsapi(struct pdp_t *pdp, uint64_t teid)
 	pdp->imsi = teid & 0x0fffffffffffffffull;
 	pdp->nsapi = (teid & 0xf000000000000000ull) >> 60;
 }
-
-int ulcpy(void *dst, void *src, size_t size)
-{
-	if (((struct ul255_t *)src)->l <= size) {
-		((struct ul255_t *)dst)->l = ((struct ul255_t *)src)->l;
-		memcpy(((struct ul255_t *)dst)->v, ((struct ul255_t *)src)->v,
-		       ((struct ul255_t *)dst)->l);
-		return 0;
-	} else
-		return EOF;
-}
diff --git a/gtp/pdp.h b/gtp/pdp.h
index 57af8b3..217b1d6 100644
--- a/gtp/pdp.h
+++ b/gtp/pdp.h
@@ -252,6 +252,5 @@ int pdp_ipget(struct pdp_t **pdp, void* ipif, struct ul66_t *eua);
 int pdp_ntoeua(struct in_addr *src, struct ul66_t *eua);
 int pdp_euaton(struct ul66_t *eua, struct in_addr *dst);
 uint64_t pdp_gettid(uint64_t imsi, uint8_t nsapi);
-int ulcpy(void *dst, void *src, size_t size);
 
 #endif /* !_PDP_H */
-- 
2.9.2




More information about the osmocom-net-gprs mailing list