X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/d0f01ef61a0b9ffe7f7252e08917ed284e2f0b9e..16b0fea8ae1a581d568dbee2efa2932aa4e6fcce:/lib/client-stubs.c diff --git a/lib/client-stubs.c b/lib/client-stubs.c index 10a1fb2..1d2d0aa 100644 --- a/lib/client-stubs.c +++ b/lib/client-stubs.c @@ -352,6 +352,14 @@ int disorder_rtp_address(disorder_client *c, char **addressp, char **portp) { return 0; } +int disorder_rtp_cancel(disorder_client *c) { + return disorder_simple(c, NULL, "rtp-cancel", (char *)NULL); +} + +int disorder_rtp_request(disorder_client *c, const char *address, const char *port) { + return disorder_simple(c, NULL, "rtp-request", address, port, (char *)NULL); +} + int disorder_scratch(disorder_client *c, const char *id) { return disorder_simple(c, NULL, "scratch", id, (char *)NULL); }