]> git.ipfire.org Git - thirdparty/haproxy.git/commit
[CLEANUP] rename client -> frontend
authorWilly Tarreau <w@1wt.eu>
Mon, 24 May 2010 19:02:37 +0000 (21:02 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 14 Jun 2010 08:53:10 +0000 (10:53 +0200)
commit03fa5df64aaf6f854235db2c0b481273c69a7e47
tree8dcfa8b30f179007d1aebc25dfb3f593890615dd
parent645513ade8ff6fc861e20fc5d27633abf7f0bac5
[CLEANUP] rename client -> frontend

The 'client.c' file now only contained frontend-specific functions,
so it has naturally be renamed 'frontend.c'. Same for client.h. This
has also been an opportunity to remove some cross references from
files that should not have depended on it.

In the end, this file should contain a protocol-agnostic accept()
code, which would initialize a session, task, etc... based on an
accept() from a lower layer. Right now there are still references
to TCP.
13 files changed:
Makefile
Makefile.bsd
Makefile.osx
include/proto/client.h [deleted file]
include/proto/frontend.h [new file with mode: 0644]
src/backend.c
src/frontend.c [moved from src/client.c with 99% similarity]
src/haproxy.c
src/proto_http.c
src/proto_tcp.c
src/proxy.c
src/stream_interface.c
src/stream_sock.c