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
diff --git a/openbsc/src/rtp_proxy.c b/openbsc/src/rtp_proxy.c
index a581b9f..59c0735 100644
--- a/openbsc/src/rtp_proxy.c
+++ b/openbsc/src/rtp_proxy.c
@@ -182,7 +182,12 @@
 		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;