]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: remove the client/server side distinction in SI addresses
authorWilly Tarreau <w@1wt.eu>
Fri, 23 Sep 2011 08:54:59 +0000 (10:54 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 23 Sep 2011 08:54:59 +0000 (10:54 +0200)
commit6471afb43d46fdb31da5344209381fa4713966b8
tree3d134ce0c648403275f77639ada9ec4de2af422f
parentdd164d0240b0fc1030044d7b1bfad93401959eea
MINOR: remove the client/server side distinction in SI addresses

Stream interfaces used to distinguish between client and server addresses
because they were previously of different types (sockaddr_storage for the
client, sockaddr_in for the server). This is not the case anymore, and this
distinction is confusing at best and has caused a number of regressions to
be introduced in the process of converting everything to full-ipv6. We can
now remove this and have a much cleaner code.
include/proto/proto_tcp.h
include/types/stream_interface.h
src/backend.c
src/dumpstats.c
src/frontend.c
src/log.c
src/peers.c
src/proto_http.c
src/proto_tcp.c
src/session.c
src/stream_sock.c