aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/link_udp.c4
-rw-r--r--src/links.c2
-rw-r--r--src/sctp_m2ua.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/link_udp.c b/src/link_udp.c
index a9b2d9b..1e24faf 100644
--- a/src/link_udp.c
+++ b/src/link_udp.c
@@ -61,7 +61,7 @@ static int udp_write_cb(struct bsc_fd *fd, struct msgb *msg)
}
LOGP(DINP, LOGL_DEBUG, "Sending MSU: %s\n", hexdump(msg->data, msg->len));
- mtp_handle_pcap(&link->base, msg->l2h, msgb_l2len(msg));
+ mtp_handle_pcap(&link->base, NET_OUT, msg->l2h, msgb_l2len(msg));
/* the assumption is we have connected the socket to the remote */
rc = sendto(fd->fd, msg->data, msg->len, 0,
@@ -136,7 +136,7 @@ static int udp_read_cb(struct bsc_fd *fd)
msg->l2h = msgb_put(msg, length);
LOGP(DINP, LOGL_DEBUG, "MSU data on: %p data %s.\n", link, hexdump(msg->data, msg->len));
- mtp_handle_pcap(link, msg->l2h, msgb_l2len(msg));
+ mtp_handle_pcap(link, NET_IN, msg->l2h, msgb_l2len(msg));
mtp_link_set_data(link, msg);
exit:
diff --git a/src/links.c b/src/links.c
index 1acc8bf..05ac2ee 100644
--- a/src/links.c
+++ b/src/links.c
@@ -177,7 +177,7 @@ int link_clear_all(struct mtp_link_set *set)
return 0;
}
-int mtp_handle_pcap(struct mtp_link *link, const uint8_t *data, int len)
+int mtp_handle_pcap(struct mtp_link *link, int dir, const uint8_t *data, int len)
{
if (link->pcap_fd < 0)
return 0;
diff --git a/src/sctp_m2ua.c b/src/sctp_m2ua.c
index 3f67665..65fde0b 100644
--- a/src/sctp_m2ua.c
+++ b/src/sctp_m2ua.c
@@ -327,7 +327,7 @@ static int m2ua_handle_data(struct sctp_m2ua_conn *conn,
memcpy(msg->l2h, data->dat, data->len);
link = &conn->trans->base;
- mtp_handle_pcap(link, msg->l2h, msgb_l2len(msg));
+ mtp_handle_pcap(link, NET_IN, msg->l2h, msgb_l2len(msg));
mtp_link_set_data(link, msg);
msgb_free(msg);
@@ -469,7 +469,7 @@ static int sctp_m2ua_write(struct mtp_link *link, struct msgb *msg)
if (!m2ua)
return -1;
- mtp_handle_pcap(link, msg->data, msg->len);
+ mtp_handle_pcap(link, NET_OUT, msg->data, msg->len);
m2ua->hdr.msg_class = M2UA_CLS_MAUP;
m2ua->hdr.msg_type = M2UA_MAUP_DATA;