mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00:00
MINOR: connection: add new prepare_srv()/destroy_srv() entries to xprt_ops
These one will be used by the SSL layer to prepare and destroy a server-side SSL context.
This commit is contained in:
parent
d9f5cca3d5
commit
d84dab733a
@ -39,6 +39,7 @@
|
|||||||
/* referenced below */
|
/* referenced below */
|
||||||
struct connection;
|
struct connection;
|
||||||
struct buffer;
|
struct buffer;
|
||||||
|
struct server;
|
||||||
struct pipe;
|
struct pipe;
|
||||||
|
|
||||||
/* For each direction, we have a CO_FL_{SOCK,DATA}_<DIR>_ENA flag, which
|
/* For each direction, we have a CO_FL_{SOCK,DATA}_<DIR>_ENA flag, which
|
||||||
@ -222,6 +223,8 @@ struct xprt_ops {
|
|||||||
int (*init)(struct connection *conn); /* initialize the transport layer */
|
int (*init)(struct connection *conn); /* initialize the transport layer */
|
||||||
int (*prepare_bind_conf)(struct bind_conf *conf); /* prepare a whole bind_conf */
|
int (*prepare_bind_conf)(struct bind_conf *conf); /* prepare a whole bind_conf */
|
||||||
void (*destroy_bind_conf)(struct bind_conf *conf); /* destroy a whole bind_conf */
|
void (*destroy_bind_conf)(struct bind_conf *conf); /* destroy a whole bind_conf */
|
||||||
|
int (*prepare_srv)(struct server *srv); /* prepare a server context */
|
||||||
|
void (*destroy_srv)(struct server *srv); /* destroy a server context */
|
||||||
char name[8]; /* transport layer name, zero-terminated */
|
char name[8]; /* transport layer name, zero-terminated */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user