[MEDIUM] moved the sockaddr pointer to the fdtab structure

The stream_sock_* functions had to know about sessions just in
order to get the server's address for a connect() operation. This
is not desirable, particularly for non-IP protocols (eg: PF_UNIX).

Put a pointer to the peer's sockaddr_storage or sockaddr address
in the fdtab structure so that we never need to look further.

With this small change, the stream_sock.c file is now 100% protocol
independant.
diff --git a/include/types/fd.h b/include/types/fd.h
index a1b6e9d..3eacd7a 100644
--- a/include/types/fd.h
+++ b/include/types/fd.h
@@ -22,6 +22,7 @@
 #ifndef _TYPES_FD_H
 #define _TYPES_FD_H
 
+#include <sys/socket.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <unistd.h>
@@ -63,6 +64,8 @@
 	struct task *owner;                  /* the session (or proxy) associated with this fd */
 	unsigned char state;                 /* the state of this fd */
 	unsigned char ev;                    /* event seen in return of poll() : FD_POLL_* */
+	struct sockaddr *peeraddr;           /* pointer to peer's network address, or NULL if unset */
+	socklen_t peerlen;                   /* peer's address length, or 0 if unset */
 };
 
 /*
diff --git a/src/backend.c b/src/backend.c
index 91c0b34..b744703 100644
--- a/src/backend.c
+++ b/src/backend.c
@@ -545,7 +545,10 @@
 	fdtab[fd].cb[DIR_RD].b = s->rep;
 	fdtab[fd].cb[DIR_WR].f = &stream_sock_write;
 	fdtab[fd].cb[DIR_WR].b = s->req;
-    
+
+	fdtab[fd].peeraddr = (struct sockaddr *)&s->srv_addr;
+	fdtab[fd].peerlen = sizeof(s->srv_addr);
+
 	EV_FD_SET(fd, DIR_WR);  /* for connect status */
     
 	fd_insert(fd);
diff --git a/src/checks.c b/src/checks.c
index cd6bd30..490ff02 100644
--- a/src/checks.c
+++ b/src/checks.c
@@ -403,6 +403,8 @@
 						fdtab[fd].cb[DIR_RD].b = NULL;
 						fdtab[fd].cb[DIR_WR].f = &event_srv_chk_w;
 						fdtab[fd].cb[DIR_WR].b = NULL;
+						fdtab[fd].peeraddr = (struct sockaddr *)&sa;
+						fdtab[fd].peerlen = sizeof(sa);
 						fdtab[fd].state = FD_STCONN; /* connection in progress */
 						fdtab[fd].ev = 0;
 						EV_FD_SET(fd, DIR_WR);  /* for connect status */
diff --git a/src/client.c b/src/client.c
index 1f58154..e887b7c 100644
--- a/src/client.c
+++ b/src/client.c
@@ -397,6 +397,8 @@
 		fdtab[cfd].cb[DIR_RD].b = s->req;
 		fdtab[cfd].cb[DIR_WR].f = &stream_sock_write;
 		fdtab[cfd].cb[DIR_WR].b = s->rep;
+		fdtab[cfd].peeraddr = (struct sockaddr *)&s->cli_addr;
+		fdtab[cfd].peerlen = sizeof(s->cli_addr);
 		fdtab[cfd].ev = 0;
 
 		if ((p->mode == PR_MODE_HTTP && (s->flags & SN_MONITOR)) ||
diff --git a/src/proxy.c b/src/proxy.c
index bd33c84..f2967de 100644
--- a/src/proxy.c
+++ b/src/proxy.c
@@ -158,6 +158,8 @@
 			fdtab[fd].cb[DIR_RD].b = fdtab[fd].cb[DIR_WR].b = NULL;
 			fdtab[fd].owner = (struct task *)curproxy; /* reference the proxy instead of a task */
 			fdtab[fd].state = FD_STLISTEN;
+			fdtab[fd].peeraddr = NULL;
+			fdtab[fd].peerlen = 0;
 			fdtab[fd].ev = 0;
 			listeners++;
 		}
diff --git a/src/stream_sock.c b/src/stream_sock.c
index 4541343..8c47d31 100644
--- a/src/stream_sock.c
+++ b/src/stream_sock.c
@@ -27,7 +27,6 @@
 #include <types/buffers.h>
 #include <types/global.h>
 #include <types/polling.h>
-#include <types/session.h>
 
 #include <proto/client.h>
 #include <proto/fd.h>
@@ -229,8 +228,6 @@
 		if (max == 0) {
 			/* may be we have received a connection acknowledgement in TCP mode without data */
 			if (likely(fdtab[fd].state == FD_STCONN)) {
-				struct session *s = fdtab[fd].owner->context;
-
 				/* We have no data to send to check the connection, and
 				 * getsockopt() will not inform us whether the connection
 				 * is still pending. So we'll reuse connect() to check the
@@ -240,7 +237,7 @@
 				 *  - connecting (EALREADY, EINPROGRESS)
 				 *  - connected (EISCONN, 0)
 				 */
-				if ((connect(fd, (struct sockaddr *)&s->srv_addr, sizeof(s->srv_addr)) == 0))
+				if ((connect(fd, fdtab[fd].peeraddr, fdtab[fd].peerlen) == 0))
 					errno = 0;
 
 				if (errno == EALREADY || errno == EINPROGRESS) {