mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 13:39:47 -05:00
Revert "Add a fail_cb to evhttp_request for connection failures"
The fail_cb extension was actually never needed; we've migrated away from
it, so let's clean that up now.
This reverts commit 1ffcbdae27.
This commit is contained in:
@@ -232,9 +232,6 @@ struct {
|
||||
void (*cb)(struct evhttp_request *, void *);
|
||||
void *cb_arg;
|
||||
|
||||
void (*fail_cb)(struct evhttp_request *, void *);
|
||||
void *fail_cb_arg;
|
||||
|
||||
/*
|
||||
* Chunked data callback - call for each completed chunk if
|
||||
* specified. If not specified, all the data is delivered via
|
||||
|
||||
@@ -654,11 +654,7 @@ evhttp_connection_fail(struct evhttp_connection *evcon,
|
||||
* reply before the connection can be freed.
|
||||
*/
|
||||
if (evhttp_connection_incoming_fail(req, error) == -1)
|
||||
{
|
||||
if (req->fail_cb)
|
||||
req->fail_cb(req, req->fail_cb_arg);
|
||||
evhttp_connection_free(evcon);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user