]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: connection: Fix a comment.
authorOlivier Houchard <cognet@ci0.org>
Sat, 1 Dec 2018 23:35:08 +0000 (00:35 +0100)
committerWilly Tarreau <w@1wt.eu>
Sun, 2 Dec 2018 16:48:28 +0000 (17:48 +0100)
Connections can now have an owner for outgoing connections, so update
the comment tu reflect that.

include/types/connection.h

index 0d7bba28e08795fa10a548b5d8b6ee5d487fb96f..6d4680a6d9c83798503ff99e974c23c034423565 100644 (file)
@@ -422,7 +422,7 @@ struct connection {
        const struct mux_ops  *mux;   /* mux layer opreations. Must be set before xprt->init() */
        void *xprt_ctx;               /* general purpose pointer, initialized to NULL */
        void *mux_ctx;                /* mux-specific context, initialized to NULL */
-       void *owner;                  /* pointer to the owner session for incoming connections, or NULL */
+       void *owner;                  /* pointer to the owner session, or NULL */
        enum obj_type *target;        /* the target to connect to (server, proxy, applet, ...) */
 
        /* second cache line */