mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-24 23:58:34 -04:00
MINOR: haterm: Remove hstream_wake() function
This function is no longer used, so it can be safely removed.
This commit is contained in:
parent
d491329de9
commit
aaa97c4441
2 changed files with 0 additions and 10 deletions
|
|
@ -5,7 +5,6 @@
|
|||
#include <haproxy/hstream-t.h>
|
||||
|
||||
struct task *sc_hstream_io_cb(struct task *t, void *ctx, unsigned int state);
|
||||
int hstream_wake(struct stconn *sc);
|
||||
void hstream_shutdown(struct stconn *sc);
|
||||
void *hstream_new(struct session *sess, struct stconn *sc, struct buffer *input);
|
||||
|
||||
|
|
|
|||
|
|
@ -447,15 +447,6 @@ err:
|
|||
goto leave;
|
||||
}
|
||||
|
||||
int hstream_wake(struct stconn *sc)
|
||||
{
|
||||
struct hstream *hs = __sc_hstream(sc);
|
||||
|
||||
TRACE_STATE("waking up task", HS_EV_HSTRM_IO_CB, hs);
|
||||
task_wakeup(hs->task, TASK_WOKEN_IO);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Add data to HTX response buffer from pre-built responses */
|
||||
static void hstream_add_data(struct htx *htx, struct hstream *hs)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue