1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avformat/tls: use non protocol specific error message

This commit is contained in:
Timo Rothenpieler
2025-06-26 01:20:58 +02:00
parent 058b226313
commit 311742eb5a

View File

@ -137,7 +137,7 @@ int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AV
parent->protocol_whitelist, parent->protocol_blacklist, parent); parent->protocol_whitelist, parent->protocol_blacklist, parent);
if (c->is_dtls) { if (c->is_dtls) {
if (ret < 0) { if (ret < 0) {
av_log(c, AV_LOG_ERROR, "WHIP: Failed to connect udp://%s:%d\n", c->underlying_host, port); av_log(c, AV_LOG_ERROR, "Failed to open udp://%s:%d\n", c->underlying_host, port);
return ret; return ret;
} }
/* Make the socket non-blocking, set to READ and WRITE mode after connected */ /* Make the socket non-blocking, set to READ and WRITE mode after connected */