rtp_proxy: Add two case and a DEBUG statement..

Handle the case values to make the compiler happy and a runtime
warning... This is similiar to other places of the code
This commit is contained in:
Holger Hans Peter Freyther 2009-08-10 07:57:13 +02:00
parent 966de68539
commit 1ddb356912
1 changed files with 6 additions and 1 deletions

View File

@ -182,7 +182,12 @@ static int rtp_socket_read(struct rtp_socket *rs, struct rtp_sub_socket *rss)
msgb_enqueue(&other_rss->tx_queue, msg);
other_rss->bfd.when |= BSC_FD_WRITE;
break;
/* FIXME: other cases */
case RTP_RECV_UPSTREAM:
case RTP_NONE:
/* FIXME: other cases */
DEBUGP(DMUX, "unhandled action: %d\n", rs->rx_action);
break;
}
return rc;