Lines Matching defs:message
43 const char *message;
103 char message[MAX_URL_SIZE];
107 snprintf(message, sizeof(message), "RTSP/1.0 %d %s\r\n",
108 code, status_messages[index].message);
115 av_strlcatf(message, sizeof(message), "CSeq: %d\r\n", seq);
116 av_strlcatf(message, sizeof(message), "Server: %s\r\n", LIBAVFORMAT_IDENT);
118 av_strlcat(message, extracontent, sizeof(message));
119 av_strlcat(message, "\r\n", sizeof(message));
120 av_log(s, AV_LOG_TRACE, "Sending response:\n%s", message);
121 ffurl_write(rt->rtsp_hd_out, message, strlen(message));
443 av_log(s, AV_LOG_ERROR, "Error parsing message URI\n");
800 /* XXX: parse message */