Log APN and tun names for packets

Change-Id: I6f7ce33f6585b2b78e2b8a5c0f7111f0316d6ddd
This commit is contained in:
Max 2017-12-05 16:30:37 +01:00
parent 9c0f4f49e9
commit 427699e6eb
1 changed files with 4 additions and 3 deletions

View File

@ -661,12 +661,13 @@ static int cb_tun_ind(struct tun_t *tun, void *pack, unsigned len)
if (!pool)
return 0;
DEBUGP(DTUN, "Received packet from tun!\n");
DEBUGP(DTUN, "Received packet for APN(%s) from tun %s", apn->cfg.name, tun->devname);
if (ippool_getip(pool, &ipm, &dst)) {
DEBUGP(DTUN, "Received packet with no PDP contex!!\n");
DEBUGPC(DTUN, " with no PDP contex!!\n");
return 0;
}
DEBUGPC(DTUN, "\n");
if (ipm->peer) /* Check if a peer protocol is defined */
gtp_data_req(apn->ggsn->gsn, (struct pdp_t *)ipm->peer, pack, len);
@ -689,7 +690,7 @@ static int encaps_tun(struct pdp_t *pdp, void *pack, unsigned len)
OSMO_ASSERT(tun);
OSMO_ASSERT(apn);
LOGPPDP(LOGL_DEBUG, pdp, "Packet received: forwarding to tun\n");
LOGPPDP(LOGL_DEBUG, pdp, "Packet received on APN(%s): forwarding to tun %s\n", apn->cfg.name, tun->devname);
switch (iph->version) {
case 6: