[Sumover-dev] [svn commit] r4268 - vic/branches/cc/rtp

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Wed Aug 13 19:10:38 BST 2008


Author: soohyunc
Date: Wed Aug 13 19:10:34 2008
New Revision: 4268

Modified:
   vic/branches/cc/rtp/session.cpp

Log:
o  bug fixed: rtp/session.cpp
   (chunk in rtcp_xr is no longer a pointer - see comments in revision 4264)


Modified: vic/branches/cc/rtp/session.cpp
==============================================================================
--- vic/branches/cc/rtp/session.cpp	(original)
+++ vic/branches/cc/rtp/session.cpp	Wed Aug 13 19:10:34 2008
@@ -1174,7 +1174,7 @@
 			seqno_ = seqno;
 		}
 		else if(flags == XR_BT_3) {
-			ts_ = ntohl((u_int32_t) &xr->chunk);
+			ts_ = ntohl(xr->chunk);
 		}
 
 		// parse seqno, ackofack, and timestamp to TfwcRcvr
@@ -1189,13 +1189,13 @@
 		printf("SENDER SENDER!!\n");
 		// parse ackvec and timestamp echo from XR report block
 		if(flags == XR_BT_1) {
-			ackvec_ = ntohl((u_int32_t) &xr->chunk);
+			ackvec_ = ntohl(xr->chunk);
 
 			//this XR conveys ackvec, hence parse it
 			tfwc_sndr_recv(flags, ackvec_, 0);
 		}
 		else if(flags == XR_BT_3) {
-			ts_echo_ = ntohl((u_int32_t) &xr->chunk);
+			ts_echo_ = ntohl(xr->chunk);
 
 			// this XR conveys ts echo, hence parse it
 			tfwc_sndr_recv(flags, 0, ts_echo_);



More information about the Sumover-dev mailing list