X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7f97fda7b59bd9d3beb9bd4591a4e6dea9efccab..b0116b5c04b64e9352d1c63f0f667a1d9a5d5c11:/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); }