MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / rtsp_cmd_options

Function rtsp_cmd_options

ffserver.c:2968–2975  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2966}
2967
2968static void rtsp_cmd_options(HTTPContext *c, const char *url)
2969{
2970// rtsp_reply_header(c, RTSP_STATUS_OK);
2971 url_fprintf(c->pb, "RTSP/1.0 %d %s\r\n", RTSP_STATUS_OK, "OK");
2972 url_fprintf(c->pb, "CSeq: %d\r\n", c->seq);
2973 url_fprintf(c->pb, "Public: %s\r\n", "OPTIONS, DESCRIBE, SETUP, TEARDOWN, PLAY, PAUSE");
2974 url_fprintf(c->pb, "\r\n");
2975}
2976
2977static void rtsp_cmd_describe(HTTPContext *c, const char *url)
2978{

Callers 1

rtsp_parse_requestFunction · 0.85

Calls 1

url_fprintfFunction · 0.85

Tested by

no test coverage detected