X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e3953a418a97e0512da7421bb1374c0336fdfd4d..16bf32dcea05c64ff2ab831569be9a91c979a1b6:/server/speaker.c diff --git a/server/speaker.c b/server/speaker.c index e470759..0cc3ac4 100644 --- a/server/speaker.c +++ b/server/speaker.c @@ -235,7 +235,7 @@ static const struct option options[] = { }; /* Display usage message and terminate. */ -static void help(void) { +static void attribute((noreturn)) help(void) { xprintf("Usage:\n" " disorder-speaker [OPTIONS]\n" "Options:\n" @@ -660,6 +660,15 @@ static void mainloop(void) { disorder_error(0, "cannot read configuration"); disorder_info("reloaded configuration"); break; + case SM_RTP_REQUEST: + /* TODO the error behavior here is really unhelpful */ + if(rtp_add_recipient(&sm.u.address)) + disorder_error(0, "unacceptable RTP destination"); + break; + case SM_RTP_CANCEL: + if(rtp_remove_recipient(&sm.u.address)) + disorder_error(0, "unacceptable RTP destination for removal"); + break; default: disorder_error(0, "unknown message type %d", sm.type); }