mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
[BUILD] stream_interface: fix conflicting declaration
stream_int_check_timeouts was declared void while it's an int.
This commit is contained in:
parent
31971e536a
commit
269358db93
2 changed files with 2 additions and 1 deletions
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
|
||||
/* main event functions used to move data between sockets and buffers */
|
||||
void stream_int_check_timeouts(struct stream_interface *si);
|
||||
int stream_int_check_timeouts(struct stream_interface *si);
|
||||
void stream_int_report_error(struct stream_interface *si);
|
||||
void stream_int_return(struct stream_interface *si, const struct chunk *msg);
|
||||
void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg);
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
#include <proto/buffers.h>
|
||||
#include <proto/client.h>
|
||||
#include <proto/fd.h>
|
||||
#include <proto/stream_interface.h>
|
||||
#include <proto/stream_sock.h>
|
||||
#include <proto/task.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue