pdp: constify param in pdp_count_secondary()

Change-Id: Ie772f2c54264c8bc91f50d9030479861dd8868b7
This commit is contained in:
Pau Espin 2019-08-20 18:24:02 +02:00
parent 310ea1db10
commit 88ce94c2bd
2 changed files with 2 additions and 2 deletions

View File

@ -359,7 +359,7 @@ void pdp_set_imsi_nsapi(struct pdp_t *pdp, uint64_t teid)
/* Count amount of secondary PDP contexts linked to this primary PDP context
* (itself included). Must be called on a primary PDP context. */
unsigned int pdp_count_secondary(struct pdp_t *pdp)
unsigned int pdp_count_secondary(const struct pdp_t *pdp)
{
unsigned int n;
unsigned int count = 0;

View File

@ -263,7 +263,7 @@ int pdp_tiddel(struct pdp_t *pdp);
uint64_t pdp_gettid(uint64_t imsi, uint8_t nsapi);
void pdp_set_imsi_nsapi(struct pdp_t *pdp, uint64_t teid);
unsigned int pdp_count_secondary(struct pdp_t *pdp);
unsigned int pdp_count_secondary(const struct pdp_t *pdp);
/* Deprecated APIs (support for only 1 GSN per process). Must be used only after first call to gtp_new() and until it is freed. */
int pdp_init(struct gsn_t *gsn); /* Use only allowed inside libgtp to keep compatiblity with deprecated APIs defined here. */