[mgcp] The nanoBTS is not binding a RTCP port

Do not guess the RTCP port as it might be the RTP port
of another connection.
This commit is contained in:
Holger Hans Peter Freyther 2009-11-19 16:25:53 +01:00
parent 39e94ebbd2
commit 8ea4b5688a
1 changed files with 2 additions and 4 deletions

View File

@ -256,14 +256,12 @@ static int rtp_data_cb(struct bsc_fd *fd, unsigned int what)
if (memcmp(&addr.sin_addr, &bts_in, sizeof(bts_in)) == 0) {
if (fd == &endp->local_rtp) {
endp->bts_rtp = addr.sin_port;
endp->bts_rtcp = htons(ntohs(addr.sin_port) + 1);
} else {
endp->bts_rtp = htons(ntohs(addr.sin_port) - 1);
endp->bts_rtcp = addr.sin_port;
}
DEBUGP(DMGCP, "Found BTS for endpoint: 0x%x on port: %d\n",
ENDPOINT_NUMBER(endp), ntohs(endp->bts_rtp));
DEBUGP(DMGCP, "Found BTS for endpoint: 0x%x on port: %d/%d\n",
ENDPOINT_NUMBER(endp), ntohs(endp->bts_rtp), ntohs(endp->bts_rtcp));
}
}