mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
curlbasesink: error codes in transfer error details
There is currently no easy way for an application to distinguish between different resource write errors being set in the curlbasesink. Add curl status codes as error details on transfer failure. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4062>
This commit is contained in:
parent
8f094a1cc8
commit
456bbad2dd
1 changed files with 8 additions and 4 deletions
|
@ -1032,8 +1032,10 @@ handle_transfer (GstCurlBaseSink * sink)
|
|||
}
|
||||
|
||||
if (m_code != CURLM_OK) {
|
||||
sink->error = g_strdup_printf ("failed to write data: %s",
|
||||
curl_multi_strerror (m_code));
|
||||
GST_ELEMENT_ERROR_WITH_DETAILS (sink, RESOURCE, WRITE,
|
||||
("Failed to write data"), ("Curl multi error: %s",
|
||||
curl_multi_strerror (m_code)), ("curl-multi-status-code",
|
||||
G_TYPE_INT, m_code, NULL));
|
||||
retval = GST_FLOW_ERROR;
|
||||
goto fail;
|
||||
}
|
||||
|
@ -1041,8 +1043,10 @@ handle_transfer (GstCurlBaseSink * sink)
|
|||
/* problems still might have occurred on individual transfers even when
|
||||
* curl_multi_perform returns CURLM_OK */
|
||||
if ((e_code = gst_curl_base_sink_transfer_check (sink)) != CURLE_OK) {
|
||||
sink->error = g_strdup_printf ("failed to transfer data: %s",
|
||||
curl_easy_strerror (e_code));
|
||||
GST_ELEMENT_ERROR_WITH_DETAILS (sink, RESOURCE, WRITE,
|
||||
("Failed to transfer data"), ("Curl easy error: %s",
|
||||
curl_easy_strerror (e_code)), ("curl-status-code", G_TYPE_INT,
|
||||
e_code, NULL));
|
||||
retval = GST_FLOW_ERROR;
|
||||
goto fail;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue