Module: sip-router
Branch: master
Commit: 450f78a13a2a762b87a8200d64ddf873d4253808
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=450f78a…
Author: Jason Penton <jason.penton(a)gmail.com>
Committer: Jason Penton <jason.penton(a)gmail.com>
Date: Thu May 1 09:09:49 2014 +0200
modules/ims_qos: switch flow descriptors. point of reference from NW persepcitve and not
UE
---
modules/ims_qos/rx_avp.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/ims_qos/rx_avp.c b/modules/ims_qos/rx_avp.c
index e2751aa..04c4ed2 100644
--- a/modules/ims_qos/rx_avp.c
+++ b/modules/ims_qos/rx_avp.c
@@ -573,8 +573,8 @@ AAA_AVP *rx_create_media_subcomponent_avp(int number, char* proto,
/*IMS Flow descriptions*/
/*first flow is the receive flow*/
flowdata_buf.len = snprintf(flowdata_buf.s, len, permit_out_with_ports, proto_int,
- ipB->len, ipB->s, intportB,
- ipA->len, ipA->s, intportA);
+ ipA->len, ipA->s, intportA,
+ ipB->len, ipB->s, intportB);
flowdata_buf.len = strlen(flowdata_buf.s);
flow_description1 = cdpb.AAACreateAVP(AVP_IMS_Flow_Description,
@@ -598,8 +598,8 @@ AAA_AVP *rx_create_media_subcomponent_avp(int number, char* proto,
}
flowdata_buf.len = snprintf(flowdata_buf.s, len2, permit_in_with_ports, proto_int,
- ipA->len, ipA->s, intportA,
- ipB->len, ipB->s, intportB);
+ ipB->len, ipB->s, intportB,
+ ipA->len, ipA->s, intportA);
flowdata_buf.len = strlen(flowdata_buf.s);
flow_description2 = cdpb.AAACreateAVP(AVP_IMS_Flow_Description,