mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-09 15:30:17 +00:00
CLEANUP: session: remove event_accept() which was not used anymore
Remove event_accept() in include/proto/proto_http.h and use correct function name in other two files instead of event_accept(). Signed-off-by: Godbach <nylzhaowei@gmail.com>
This commit is contained in:
parent
eab1dc6234
commit
430f291a99
@ -63,7 +63,6 @@ extern char *get_http_auth_buff;
|
||||
#define HTTP_IS_TOKEN(x) (http_is_token[(unsigned char)(x)])
|
||||
#define HTTP_IS_VER_TOKEN(x) (http_is_ver_token[(unsigned char)(x)])
|
||||
|
||||
int event_accept(int fd);
|
||||
int process_cli(struct session *t);
|
||||
int process_srv_data(struct session *t);
|
||||
int process_srv_conn(struct session *t);
|
||||
|
@ -97,7 +97,7 @@
|
||||
#define SN_BE_TRACK_ANY 0x00E00000 /* union of all SN_BE_TRACK_* above */
|
||||
|
||||
|
||||
/* WARNING: if new fields are added, they must be initialized in event_accept()
|
||||
/* WARNING: if new fields are added, they must be initialized in session_accept()
|
||||
* and freed in session_free() !
|
||||
*/
|
||||
|
||||
|
@ -1094,7 +1094,7 @@ static struct session *peer_session_create(struct peer *peer, struct peer_sessio
|
||||
struct task *t;
|
||||
|
||||
if ((s = pool_alloc2(pool2_session)) == NULL) { /* disable this proxy for a while */
|
||||
Alert("out of memory in event_accept().\n");
|
||||
Alert("out of memory in peer_session_create().\n");
|
||||
goto out_close;
|
||||
}
|
||||
|
||||
@ -1113,7 +1113,7 @@ static struct session *peer_session_create(struct peer *peer, struct peer_sessio
|
||||
* it as soon as possible, which means closing it immediately for TCP.
|
||||
*/
|
||||
if ((t = task_new()) == NULL) { /* disable this proxy for a while */
|
||||
Alert("out of memory in event_accept().\n");
|
||||
Alert("out of memory in peer_session_create().\n");
|
||||
goto out_free_session;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user