From 7e8da1379eb73e6a3b50837b049f0d34450cf89c Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 16 Oct 2010 17:33:46 +0200 Subject: nat: Add a method to add a proper message to the queue. This will be used by the USSD module to forward the data without creating another copy of the data. --- openbsc/src/nat/bsc_nat_utils.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'openbsc/src') diff --git a/openbsc/src/nat/bsc_nat_utils.c b/openbsc/src/nat/bsc_nat_utils.c index a458afdaa..b295f3512 100644 --- a/openbsc/src/nat/bsc_nat_utils.c +++ b/openbsc/src/nat/bsc_nat_utils.c @@ -273,7 +273,11 @@ int bsc_do_write(struct write_queue *queue, struct msgb *msg, int proto) { /* prepend the header */ ipaccess_prepend_header(msg, proto); + return bsc_write_msg(queue, msg); +} +int bsc_write_msg(struct write_queue *queue, struct msgb *msg) +{ if (write_queue_enqueue(queue, msg) != 0) { LOGP(DINP, LOGL_ERROR, "Failed to enqueue the write.\n"); msgb_free(msg); -- cgit v1.2.3