mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-05 04:03:44 +02:00
14 lines
458 B
C
14 lines
458 B
C
#ifndef _HAPROXY_HSTREAM_H
|
|
#define _HAPROXY_HSTREAM_H
|
|
|
|
#include <haproxy/cfgparse.h>
|
|
#include <haproxy/hstream-t.h>
|
|
|
|
void init_httpterm_cfg(int argc, char **argv, struct cfgfile *cfg);
|
|
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);
|
|
|
|
#endif /* _HAPROXY_HSTREAM_H */
|