sgsnemu: Rename sgsnemu's libgtp cb_conf

It makes it easier to understand where the function is called.

Change-Id: Ibf32b416c3247d1415aa9c1a88755076dcd606f4
This commit is contained in:
Pau Espin 2020-04-09 18:01:42 +02:00 committed by laforge
parent 28c6a32677
commit 9366f4c034
1 changed files with 2 additions and 2 deletions

View File

@ -1568,7 +1568,7 @@ static int echo_conf(int recovery)
return 0;
}
static int conf(int type, int cause, struct pdp_t *pdp, void *cbp)
static int _gtp_cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
{
/* if (cause < 0) return 0; Some error occurred. We don't care */
switch (type) {
@ -1639,7 +1639,7 @@ int main(int argc, char **argv)
maxfd = gsn->fd1u;
gtp_set_cb_delete_context(gsn, delete_context);
gtp_set_cb_conf(gsn, conf);
gtp_set_cb_conf(gsn, _gtp_cb_conf);
if (options.createif)
gtp_set_cb_data_ind(gsn, encaps_tun);
else